repod/src/main.ts
2024-09-14 17:11:11 +02:00

12 lines
239 B
TypeScript

import App from './App.vue'
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import router from './router.ts'
const Vue = createApp(App)
const pinia = createPinia()
Vue.use(pinia)
Vue.use(router)
Vue.mount('#content')