Bunch more new UI

This commit is contained in:
2024-03-07 02:24:23 +00:00
parent d396ec785f
commit 9fbe350a68
33 changed files with 889 additions and 161 deletions

View File

@@ -5,10 +5,13 @@ import App from './App.vue';
import { createApp } from 'vue';
import { createPinia } from 'pinia';
import VueApexCharts from 'vue3-apexcharts';
const pinia = createPinia();
const app = createApp(App);
registerPlugins(app);
app.use(VueApexCharts);
app.use(pinia);
app.mount('#app');