repod/src/main.ts

12 lines
236 B
TypeScript
Raw Normal View History

2023-06-23 07:44:48 +00:00
import App from './App.vue'
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import router from './router'
2023-06-22 18:10:30 +00:00
const Vue = createApp(App)
const pinia = createPinia()
Vue.use(pinia)
Vue.use(router)
Vue.mount('#content')