1234567891011121314151617 |
- /*
- * @Author: LiZhiWei
- * @Date: 2025-04-24 15:20:36
- * @LastEditors: LiZhiWei
- * @LastEditTime: 2025-04-24 15:33:21
- * @Description:
- */
- import { createApp } from 'vue'
- import App from './App.vue'
- import ElementPlus from 'element-plus'
- import 'element-plus/dist/index.css'
- import router from './router'
- const app = createApp(App)
- app.use(router)
- app.use(ElementPlus)
- app.mount('#app')
|