2023-06-23 07:44:48 +00:00
|
|
|
import App from './App.vue'
|
2024-08-08 15:20:54 +00:00
|
|
|
import { createApp } from 'vue'
|
2024-08-08 22:58:25 +00:00
|
|
|
import { createPinia } from 'pinia'
|
2024-09-13 06:56:04 +00:00
|
|
|
import router from './router'
|
2023-06-22 18:10:30 +00:00
|
|
|
|
2024-08-08 15:20:54 +00:00
|
|
|
const Vue = createApp(App)
|
2024-08-08 22:58:25 +00:00
|
|
|
const pinia = createPinia()
|
2024-08-08 15:20:54 +00:00
|
|
|
|
2024-08-08 22:58:25 +00:00
|
|
|
Vue.use(pinia)
|
2024-08-08 15:20:54 +00:00
|
|
|
Vue.use(router)
|
|
|
|
Vue.mount('#content')
|