main.ts 388 B

1234567891011121314151617
  1. /*
  2. * @Author: LiZhiWei
  3. * @Date: 2025-04-24 15:20:36
  4. * @LastEditors: LiZhiWei
  5. * @LastEditTime: 2025-04-24 15:33:21
  6. * @Description:
  7. */
  8. import { createApp } from 'vue'
  9. import App from './App.vue'
  10. import ElementPlus from 'element-plus'
  11. import 'element-plus/dist/index.css'
  12. import router from './router'
  13. const app = createApp(App)
  14. app.use(router)
  15. app.use(ElementPlus)
  16. app.mount('#app')