element plus 中分页英文如何转换为中文

 解决方案:引入zhCn ,在使用时添加语言

import ElementPlus from "element-plus";
import "element-plus/dist/index.css";
import zhCn from 'element-plus/es/locale/lang/zh-cn'

const app = createApp(App)
  .use(router)
  .use(ElementPlus, {
    locale: zhCn,
  }).
  .mount("#app");

转为中文样式:

猜你喜欢

转载自blog.csdn.net/weixin_42901443/article/details/129341301