repod/src/main.ts

13 lines
282 B
TypeScript
Raw Normal View History

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