关于vue项目中使用element-ui时,默认中文切换成英文的全局配置方法
element
A Vue.js 2.0 UI Toolkit for Web
项目地址:https://gitcode.com/gh_mirrors/eleme/element
免费下载资源
·
vue默认使用的中文语言,当我们想要默认使用英语或者其他语言时,需要替换掉原本的中文
问题:当我在写项目时,比如table的分页时,默认显示的内容是中文的,如下:
解决:根据官网给出的提示,通过配置 webpack.config.js ,但是,我使用的是vue-cli 3,所以需要自己手动配置。
在项目根目录下创建 vue.config.js,具体配置如下:
const path = require('path')
const webpack = require('webpack')
module.exports = {
configureWebpack: {
resolve: {
alias: {
'assets': path.resolve(__dirname, './src/assets'),
'components': path.resolve(__dirname, './src/components'),
'views': path.resolve(__dirname, './src/views'),
}
},
plugins: [
new webpack.NormalModuleReplacementPlugin(/element-ui[\/\\]lib[\/\\]locale[\/\\]lang[\/\\]zh-CN/, 'element-ui/lib/locale/lang/en')
]
},
// chainWebpack: config => {
// config.resolve.alias
// .set('views', path.resolve(__dirname, './src/views'))
// }
}
如上,plugins的配置,意思就是语言版本的切换。
结果就成功切换了:
PS:注释部分为配置webpack的另一种写法。
GitHub 加速计划 / eleme / element
54.06 K
14.63 K
下载
A Vue.js 2.0 UI Toolkit for Web
最近提交(Master分支:3 个月前 )
c345bb45
7 个月前
a07f3a59
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update transition.md
* Update table.md
* Update table.md
* Update transition.md
* Update popover.md 7 个月前
更多推荐
已为社区贡献1条内容
所有评论(0)