2026-04-28 15:47:32 +08:00
|
|
|
import { createApp } from 'vue'
|
|
|
|
|
import { createPinia } from 'pinia'
|
|
|
|
|
|
|
|
|
|
import App from './App.vue'
|
|
|
|
|
import router from './router'
|
|
|
|
|
|
2026-05-12 15:32:30 +08:00
|
|
|
import '../public/index.scss'
|
|
|
|
|
|
2026-04-28 15:47:32 +08:00
|
|
|
const app = createApp(App)
|
|
|
|
|
|
|
|
|
|
app.use(createPinia())
|
|
|
|
|
app.use(router)
|
|
|
|
|
|
|
|
|
|
app.mount('#app')
|