1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-25 23:03:47 +01:00

chore: removes unused component

This commit is contained in:
Amir Raminfar
2023-09-09 16:47:19 -07:00
parent 45d8991c5f
commit 0812bfaca4

View File

@@ -1,5 +1,5 @@
import { type App } from "vue";
import { Autocomplete, Button, Dropdown, Switch, Skeleton, Field, Table, Modal, Config } from "@oruga-ui/oruga-next";
import { Autocomplete, Button, Dropdown, Switch, Skeleton, Field, Modal, Config } from "@oruga-ui/oruga-next";
import { bulmaConfig } from "@oruga-ui/theme-bulma";
export const install = (app: App) => {
@@ -11,6 +11,5 @@ export const install = (app: App) => {
.use(Modal)
.use(Field)
.use(Skeleton)
.use(Table)
.use(Config, bulmaConfig);
};