2026-03-05 10:49:46 +08:00
|
|
|
import { createApp } from 'vue'
|
|
|
|
|
import { createPinia } from 'pinia'
|
|
|
|
|
import ElementPlus from 'element-plus'
|
|
|
|
|
import 'element-plus/dist/index.css'
|
|
|
|
|
import router from './router'
|
2026-03-07 09:11:08 +08:00
|
|
|
import './assets/styles/index.css'
|
2026-03-05 10:49:46 +08:00
|
|
|
import App from './App.vue'
|
|
|
|
|
|
|
|
|
|
const app = createApp(App)
|
|
|
|
|
|
|
|
|
|
app.use(createPinia())
|
|
|
|
|
app.use(router)
|
|
|
|
|
app.use(ElementPlus)
|
|
|
|
|
|
|
|
|
|
app.mount('#app')
|