2025-10-15 14:07:39 +08:00
|
|
|
import { createApp } from 'vue'
|
|
|
|
|
import { createPinia } from 'pinia'
|
|
|
|
|
import router from './router'
|
|
|
|
|
import App from './App.vue'
|
|
|
|
|
import './styles/index.scss'
|
2025-10-30 15:34:23 +08:00
|
|
|
import ElementPlus from 'element-plus'
|
2025-10-15 14:07:39 +08:00
|
|
|
|
|
|
|
|
const app = createApp(App)
|
|
|
|
|
|
|
|
|
|
app.use(createPinia())
|
2025-10-30 15:34:23 +08:00
|
|
|
app.use(ElementPlus)
|
2025-10-15 14:07:39 +08:00
|
|
|
app.use(router)
|
|
|
|
|
|
|
|
|
|
app.mount('#app')
|