integrate the user module

This commit is contained in:
2026-02-05 13:50:43 +02:00
parent 9d22fe8413
commit 4d95a40c37
15 changed files with 220 additions and 162 deletions
+4 -1
View File
@@ -13,8 +13,11 @@ import App from './App.vue'
// Composables
import { createApp } from 'vue'
const app = createApp(App)
// Global Mixins
import GlobalMixin from '@/mixins/GlobalMixin';
const app = createApp(App)
registerPlugins(app)
app.mixin(GlobalMixin);
app.mount('#app')