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.

15 lines
324 B

3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
3 months ago
  1. import { createApp } from 'vue'
  2. import App from './App.vue'
  3. import router from './router'
  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. const app = createApp(App)
  8. app.use(router)
  9. app.use(ElementPlus, {
  10. locale: zhCn
  11. })
  12. app.mount('#app')