首页 > 其他分享 >element-plus导入中文和自带的icon

element-plus导入中文和自带的icon

时间:2023-03-12 13:57:25浏览次数:39  
标签:locale app element 导入 plus icon

  • 在使用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

相关文章