You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
420 B

2 months ago
2 months ago
2 months ago
2 months ago
2 months ago
  1. import './assets/main.css'
  2. import { createApp } from 'vue'
  3. import { createPinia } from 'pinia'
  4. import ElementPlus from 'element-plus'
  5. import 'element-plus/dist/index.css'
  6. import zhCn from 'element-plus/es/locale/lang/zh-cn'
  7. import App from './App.vue'
  8. import router from './router'
  9. const app = createApp(App)
  10. app.use(ElementPlus, {
  11. locale: zhCn,
  12. })
  13. app.use(createPinia())
  14. app.use(router)
  15. app.mount('#app')