2026-05-31 14:55:01 +08:00
|
|
|
import { createApp } from 'vue'
|
|
|
|
|
import { createPinia } from 'pinia'
|
|
|
|
|
import ElementPlus from 'element-plus'
|
|
|
|
|
import 'element-plus/dist/index.css'
|
|
|
|
|
import App from './App.vue'
|
2026-05-31 19:35:53 +08:00
|
|
|
import router from './router'
|
2026-05-31 14:55:01 +08:00
|
|
|
|
|
|
|
|
const app = createApp(App)
|
|
|
|
|
app.use(createPinia())
|
|
|
|
|
app.use(router)
|
|
|
|
|
app.use(ElementPlus)
|
|
|
|
|
app.mount('#app')
|