Vue rewrite
Some checks failed
Build Mau & Deploy Mau / build (push) Failing after 46s
Build Mau & Deploy Mau / deploy (push) Has been skipped

This commit is contained in:
2024-07-14 16:28:46 +02:00
parent e30e2d5d60
commit e059fc347c
100 changed files with 4797 additions and 28811 deletions

17
src/main.ts Normal file
View File

@@ -0,0 +1,17 @@
import {createApp} from 'vue';
import {createPinia} from 'pinia';
import ToastPlugin from 'vue-toast-notification';
import 'vue-toast-notification/dist/theme-bootstrap.css';
import App from './App.vue';
import router from './router';
const app = createApp(App);
app.use(createPinia());
app.use(router);
app.use(ToastPlugin, {
position: 'top-right',
});
app.mount('#app');