repod/src/main.ts

13 lines
282 B
TypeScript
Raw Permalink Normal View History

import '@formatjs/intl-segmenter/polyfill'
2023-06-23 09:44:48 +02:00
import App from './App.vue'
import { createApp } from 'vue'
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
const Vue = createApp(App)
const pinia = createPinia()
Vue.use(pinia)
Vue.use(router)
Vue.mount('#content')