VUE3+ElementPlus日期控件改为中文 作者:马育民 • 2026-04-28 16:55 • 阅读:10003 # 说明问题 VUE3+ElementPlus,使用日期控件,默认显示英文 # 解决 在 `main.js` 中增加两段代码: ``` // 👇 关键:引入中文语言包 import zhCn from 'element-plus/dist/locale/zh-cn.mjs' ``` ``` // 👇 关键:use 时加入 locale app.use(ElementPlus, { locale: zhCn }) ``` ### 完整代码 ``` import { createApp } from 'vue' import App from './App.vue' import router from './router' import ElementPlus from 'element-plus' // 👇 关键:引入中文语言包 import zhCn from 'element-plus/dist/locale/zh-cn.mjs' import 'element-plus/dist/index.css' const app = createApp(App) app.use(router) // 👇 关键:use 时加入 locale app.use(ElementPlus, { locale: zhCn }) app.mount('#app') ``` 原文出处:http://malaoshi.top/show_1GW3DLMHX5UE.html