100字范文,内容丰富有趣,生活中的好帮手!
100字范文 > 修改element-plus默认英文为中文

修改element-plus默认英文为中文

时间:2023-07-08 17:40:09

相关推荐

修改element-plus默认英文为中文

element-plus版本:1.0.2-beta.70

仅需在App.vue中,修改:

<template><el-config-provider :locale="locale"><router-view /></el-config-provider></template><script>import { ElConfigProvider } from 'element-plus'// 中文包import zhCn from 'element-plus/lib/locale/lang/zh-cn'export default {components: {[ElConfigProvider.name]: ElConfigProvider},setup() {// 刷新页面const fn = () => {location.reload()}// 切换为中文let locale = zhCnreturn {locale}}}</script>

ok~~

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。