2025-04-24 12:30:49 +08:00
|
|
|
import './assets/main.css'
|
|
|
|
|
|
|
|
|
|
import { createApp } from 'vue'
|
|
|
|
|
import App from './App.vue'
|
|
|
|
|
import router from './router'
|
|
|
|
|
|
2025-04-24 16:31:25 +08:00
|
|
|
import ElementPlus from 'element-plus'
|
|
|
|
|
import 'element-plus/dist/index.css'
|
|
|
|
|
|
2025-04-24 12:30:49 +08:00
|
|
|
const app = createApp(App)
|
|
|
|
|
|
|
|
|
|
app.use(router)
|
2025-04-24 16:31:25 +08:00
|
|
|
app.use(ElementPlus)
|
2025-04-24 12:30:49 +08:00
|
|
|
|
|
|
|
|
app.mount('#app')
|