2025-10-08 23:15:33 +08:00
|
|
|
import './assets/main.css'
|
2025-10-04 17:42:53 +08:00
|
|
|
|
|
|
|
|
import { createApp } from 'vue'
|
|
|
|
|
import { createPinia } from 'pinia'
|
|
|
|
|
|
|
|
|
|
import App from './App.vue'
|
|
|
|
|
import router from './router'
|
|
|
|
|
|
2025-10-08 20:00:30 +08:00
|
|
|
import ElementPlus from 'element-plus'
|
|
|
|
|
import 'element-plus/dist/index.css'
|
|
|
|
|
|
2025-10-04 17:42:53 +08:00
|
|
|
const app = createApp(App)
|
|
|
|
|
|
|
|
|
|
app.use(createPinia())
|
|
|
|
|
app.use(router)
|
2025-10-08 20:00:30 +08:00
|
|
|
app.use(ElementPlus)
|
2025-10-04 17:42:53 +08:00
|
|
|
|
|
|
|
|
app.mount('#app')
|