Refactor #3832 Refactor #3833 - For TieredMenu

This commit is contained in:
mertsincan 2023-04-17 09:38:00 +03:00
parent 62571db9e3
commit 753abea7ae
4 changed files with 24 additions and 6 deletions

View file

@ -86,6 +86,20 @@ export interface TieredMenuSlots {
*/
active: boolean;
}): VNode[];
/**
* Custom item icon template.
* @param {Object} scope - item icon slot's params.
*/
itemicon(scope: {
/**
* Menuitem instance
*/
item: MenuItem;
/**
* Style class of the item icon element.
*/
class: any;
}): VNode[];
}
/**