main.js 305 B

12345678910111213
  1. import { createApp } from 'vue'
  2. import ElementPlus from 'element-plus'
  3. import 'element-plus/dist/index.css'
  4. import zhCn from 'element-plus/es/locale/lang/zh-cn'
  5. import App from './App.vue'
  6. import './styles/index.css'
  7. const app = createApp(App)
  8. app.use(ElementPlus, { locale: zhCn })
  9. app.mount('#app')