赞
踩
Element UI的默认语言是英文。那么如何才能将其改成中文呢?ElementUI 提供了国际化的支持,这里给出其中的一个改成中文的方法。找到main.js 文件, 做如下改动:
- import {createApp} from 'vue'
- import ElementPlus from 'element-plus';
- import locale from "element-plus/lib/locale/lang/zh-cn";//需要新加的代码
- import App from './App.vue'
- import "element-plus/lib/theme-chalk/index.css";
-
- let app = createApp(App);
- app.use(ElementPlus, {locale});//需要改变的地方,加入locale
- app.mount('#app');
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。