Refactor #3832 Refactor #3833 - For Breadcrumb

This commit is contained in:
mertsincan 2023-04-17 08:42:20 +03:00
parent 04af30b015
commit 46f63c068e
4 changed files with 25 additions and 7 deletions

View file

@ -56,6 +56,20 @@ export interface BreadcrumbSlots {
* Custom separator template.
*/
separator(): 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[];
}
/**