Fixed #4352 - Menu: new submenuheader slot

This commit is contained in:
Tuğçe Küçükoğlu 2023-08-29 17:44:18 +03:00
parent 693ce32c6a
commit bd1f590365
2 changed files with 15 additions and 1 deletions

View file

@ -233,6 +233,16 @@ export interface MenuSlots {
*/
class: any;
}): VNode[];
/**
* Custom item template.
* @param {Object} scope - submenuheader slot's params.
*/
submenuheader(scope: {
/**
* Menuitem instance
*/
submenuheader: MenuItem;
}): VNode[];
}
/**