mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-24 22:39:18 +01:00
* chore: updates modules * feat: adds support for exponential moving average * feat: add expoentital moving avg * adds index page * cleans up table * fixes typecheck * adds bar chart * updates dashboard to orgua table * wip * cleans up ui * remove screenshot tests for playwright * adds more tests * fixes icon * fixes default sort * removes unused var * adds vscode settings
18 lines
567 B
TypeScript
18 lines
567 B
TypeScript
import { type App } from "vue";
|
|
import { Autocomplete, Button, Dropdown, Switch, Skeleton, Field, Table, Modal, Config } from "@oruga-ui/oruga-next";
|
|
import { bulmaConfig } from "@oruga-ui/theme-bulma";
|
|
import OrugaIcon from "@/components/OrugaIcon.vue";
|
|
export const install = (app: App) => {
|
|
app
|
|
.use(Autocomplete)
|
|
.use(Button)
|
|
.use(Dropdown)
|
|
.use(Switch)
|
|
.use(Modal)
|
|
.use(Field)
|
|
.use(Skeleton)
|
|
.use(Table)
|
|
.component("oruga-icon", OrugaIcon)
|
|
.use(Config, { ...bulmaConfig, iconComponent: "oruga-icon", iconPack: "" });
|
|
};
|