当前位置:   article > 正文

ElementPlus设置中文_element-plus中文

element-plus中文

介绍

Vue3项目将ElementPlus切换为中文

示例

第一步:引入中文文件

import zhCn from 'element-plus/dist/locale/zh-cn.mjs'
  • 1

第二步:设置中文

app.use(ElementPlus,{
    locale: zhCn,
})
  • 1
  • 2
  • 3

完整代码

// main.ts
import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import App from './App.vue'
import zhCn from 'element-plus/dist/locale/zh-cn.mjs'

const app = createApp(App)

app.use(ElementPlus,{
    locale: zhCn,
})
app.mount('#app')
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/627259
推荐阅读