在vue项目中全局引入组件中文化
import element form 'element-plus'
import 'element-pplus/lib/theme-chalk/index.css'
import 'dayjs/locale/zh-cn' //中文
import locale form 'element-plus/lib/locale/lang/zh-cn' //中文
使用的方式一
createApp(App).use(router).use(element, { locale }).mount('#app')
使用的方式二
app.use(ElementPlus,{locale});
详细网址:https://blog.csdn.net/weixin_44255044/article/details/115457122