ElementPlus设置中文

介绍

Vue3项目将ElementPlus切换为中文

示例

第一步:引入中文文件

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

第二步:设置中文

app.use(ElementPlus,{
    
    
    locale: zhCn,
})

完整代码

// 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')

猜你喜欢

转载自blog.csdn.net/gc666888/article/details/135468437
今日推荐