当前位置:   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】
推荐阅读
相关标签
  

闽ICP备14008679号