2024-10-18 14:41:47 +02:00
|
|
|
import '@formatjs/intl-segmenter/polyfill'
|
2023-06-23 09:44:48 +02:00
|
|
|
import App from './App.vue'
|
2024-08-08 15:20:54 +00:00
|
|
|
import { createApp } from 'vue'
|
2024-08-09 00:58:25 +02:00
|
|
|
import { createPinia } from 'pinia'
|
2024-09-14 16:54:56 +02:00
|
|
|
import router from './router.ts'
|
2023-06-22 20:10:30 +02:00
|
|
|
|
2024-08-08 15:20:54 +00:00
|
|
|
const Vue = createApp(App)
|
2024-08-09 00:58:25 +02:00
|
|
|
const pinia = createPinia()
|
2024-08-08 15:20:54 +00:00
|
|
|
|
2024-08-09 00:58:25 +02:00
|
|
|
Vue.use(pinia)
|
2024-08-08 15:20:54 +00:00
|
|
|
Vue.use(router)
|
|
|
|
Vue.mount('#content')
|