天天看点

vue3.x使用element-plus组件默认英文

我使用的时候是

[email protected]

这版本,引入组件发现是英文的,后来查看官网,原来要所谓的,国际化,说白了,elementPlus默认是英文,需要手动配置中文,
import {createApp,h} from "vue"
import ElementPlus from "element-plus"
import locale from 'element-plus/lib/locale/lang/zh-cn' //中文


createApp(App).use(ElementPlus,{locale,size:'small'}).mount('#app')
           

官方地址