feat: add scoped slot for icon in menu.js;

新增:为 menus.js 的 icon 增加 scoped slot API;
This commit is contained in:
iczer 2020-08-27 19:06:39 +08:00
parent 14685fdfd8
commit 3b4a7e733d

View File

@ -120,7 +120,7 @@ export default {
},
methods: {
renderIcon: function (h, icon, key) {
if (this.$scopedSlots.icon) {
if (this.$scopedSlots.icon && icon && icon !== 'none') {
return this.$scopedSlots.icon({icon, key})
}
return !icon || icon == 'none' ? null : h(Icon, {props: {type: icon}})