element-plus设置为中文

发布时间 2023-11-10 00:48:42作者: 李嘉图呀

element-plus组件文字语言默认是英文,需要手动更改一下中文包

  1. 引入element
   import ElementPlus from "element-plus";
   import "element-plus/dist/index.css";
   import zhCn from "element-plus/lib/locale/lang/zh-cn"
  1. 实例化Vue
   import { createApp } from "vue";
   let app = createApp(App);
   app.use(ElementPlus, {locale: zhCn})

完成以上配置即可。