刚开始用 ElementPlus 发现默认的组件内容都是英文的
找了找,发现是国际化的问题,默认就是显示英文,如果要显示中文需要配置中文显示。
关于显示中文的官方说明:https://element-plus.org/zh-CN/guide/i18n.html#全局配置
只需要在自己项目中的 main.ts
中配置下面的内容
// ELEMENT-UI
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
app.use(ElementPlus, {
locale: zhCn
})
就能正常显示中文了。