Refactor #3832 Refactor #3833 - For TreeTable

This commit is contained in:
Tuğçe Küçükoğlu 2023-04-13 11:53:28 +03:00
parent f592ab71d8
commit 7ee4c0ac83
6 changed files with 110 additions and 30 deletions

View file

@ -382,6 +382,31 @@ export interface TreeTableSlots {
* Custom empty template.
*/
empty(): VNode[];
/**
* Custom loading icon template.
*/
loadingicon(): VNode[];
/**
* Custom toggler icon template.
*/
togglericon(): VNode[];
/**
* Custom checkbox icon template.
*/
checkboxicon(): VNode[];
/**
* Custom sort icon template.
*/
sorticon(scope: {
/**
* Whether or not column is sorted
*/
sorted: TreeNode;
/**
* Current sort order
*/
sortOrder: boolean;
}): VNode[];
}
/**