This commit is contained in:
2026-06-23 01:24:22 +02:00
parent e9d77fbd05
commit 5152ec0f7e
8 changed files with 110 additions and 9 deletions
+6 -2
View File
@@ -5,19 +5,23 @@
*/
// Composables
import { createApp } from 'vue'
import {createApp} from 'vue'
// Plugins
import { registerPlugins } from '@/plugins'
import {registerPlugins} from '@/plugins'
// Components
import App from './App.vue'
// Styles
import 'unfonts.css'
import {useAppStore} from "@/stores/app.ts";
const app = createApp(App)
registerPlugins(app)
const appStore = useAppStore()
appStore.initialize()
app.mount('#app')