mirror of
https://github.com/iczer/vue-antd-admin
synced 2025-04-06 04:00:06 +08:00
feat: add scoped slot for icon in menu.js; ⭐
新增:为 menus.js 的 icon 增加 scoped slot API;
This commit is contained in:
parent
58784c81fd
commit
3b3cd76e51
@ -120,7 +120,7 @@ export default {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
renderIcon: function (h, icon, key) {
|
renderIcon: function (h, icon, key) {
|
||||||
if (this.$scopedSlots.icon) {
|
if (this.$scopedSlots.icon && icon && icon !== 'none') {
|
||||||
return this.$scopedSlots.icon({icon, key})
|
return this.$scopedSlots.icon({icon, key})
|
||||||
}
|
}
|
||||||
return !icon || icon == 'none' ? null : h(Icon, {props: {type: icon}})
|
return !icon || icon == 'none' ? null : h(Icon, {props: {type: icon}})
|
||||||
|
Loading…
x
Reference in New Issue
Block a user