Refactor #3832 Refactor #3833 - For Menubar

This commit is contained in:
Tuğçe Küçükoğlu 2023-04-05 14:56:52 +03:00
parent 181732c1c8
commit 27c4bbec31
4 changed files with 47 additions and 13 deletions

View file

@ -60,6 +60,23 @@ export interface MenubarSlots {
*/
item: MenuItem;
}): VNode[];
/**
* Custom bar icon template.
*/
baricon(): VNode[];
/**
* Custom submenu icon template.
*/
submenuicon(scope: {
/**
* Whether item is root
*/
root: boolean;
/**
* Whether item is active
*/
active: boolean;
}): VNode[];
}
/**