fix(menu.vue): 🐛 菜单列表未适配el-icon导致图标不显示问题修复
https://gitee.com/youlaiorg/vue3-element-admin/issues/IA4DL7 #IA4DL7
This commit is contained in:
@@ -48,7 +48,19 @@
|
|||||||
>
|
>
|
||||||
<el-table-column label="菜单名称" min-width="200">
|
<el-table-column label="菜单名称" min-width="200">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
|
<template
|
||||||
|
v-if="scope.row.icon && scope.row.icon.startsWith('el-icon')"
|
||||||
|
>
|
||||||
|
<el-icon style="vertical-align: -0.15em">
|
||||||
|
<component :is="scope.row.icon.replace('el-icon-', '')" />
|
||||||
|
</el-icon>
|
||||||
|
</template>
|
||||||
|
<template v-else-if="scope.row.icon">
|
||||||
<svg-icon :icon-class="scope.row.icon" />
|
<svg-icon :icon-class="scope.row.icon" />
|
||||||
|
</template>
|
||||||
|
<template v-else>
|
||||||
|
<svg-icon icon-class="menu" />
|
||||||
|
</template>
|
||||||
{{ scope.row.name }}
|
{{ scope.row.name }}
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
|
|||||||
Reference in New Issue
Block a user