main.ts 290 B

12345678910111213
  1. import { createApp } from 'vue'
  2. import App from './App.vue'
  3. import router from './route'
  4. const app = createApp(App)
  5. app.use(router)
  6. import { ElLoading } from 'element-plus'
  7. app.use(ElLoading)
  8. import 'element-plus/dist/index.css'
  9. import '@/assets/css/element-hack.scss'
  10. app.mount('#app')