element-plus": "^1.2.0-beta.1"菜单图标不显示
来源:4-15 业务落地:生成动态 menu 菜单
面包烤不熟
2021-11-05
老师,安装的element-plus": "^1.2.0-beta.1"菜单图标不显示
2回答
-
Sunday
2021-11-30
回复 慕先生3223357:
你好:
element-plus 在 1.2.0 之后的版本中对 icons 进行了使用层面的修改,想要使用 icon 必须通过组件的形式进行导入
我不太理解你说的动态导入指的是什么意思。如果你希望全局导入来进行使用的话,那么可以按照以下方式导入并使用:
导入:
import * as icons from '@element-plus/icons'
const app = createApp(App)
Object.keys(icons).forEach((key) => {
app.component(key, icons[key])
})
使用:
<el-icon><add-location /></el-icon>
<div style="font-size: 20px">
<edit style="width: 22px; height: 22px; margin-right: 8px" />
<share style="width: 1em; height: 1em; margin-right: 8px" />
<delete style="width: 1em; height: 1em; margin-right: 8px" />
<search style="width: 1em; height: 1em; margin-right: 8px" />
</div>
效果:
132022-03-29 -
Sunday
2021-11-05
你好
Elementplus在1.2.0的版本中有一些破坏性的更新。具体可以看一下官网中icons组件的用法,需要单独下载@element-plus/icons 。或者使用和视频同样版本。032021-11-30
相似问题