- 在使用element-plus的时候直接导入使用会发现默认是英文,如果需要使用中文则只需要一下操作
在main.ts(js)中添加以下代码
import ElementPlus from "element-plus" import locale from 'element-plus/lib/locale/lang/zh-cn' const app = createApp(App) app.use(ElementPlus ,{locale})
- 在使用icon的时候会发现直接使用并不会在页面上展示,这里需要手动在全局导入一下icon包
一样还是在main.ts(js)中添加一下代码
import * as ElementPlusIconsVue from '@element-plus/icons-vue' for (const [key, component] of Object.entries(ElementPlusIconsVue)) { app.component(key, component) }
完整代码如下
标签:locale,app,element,导入,plus,icon From: https://www.cnblogs.com/rht555/p/17208058.html