hongluan-business-ui
Version:
Hongluan Business Component Library for Vue 3
15 lines (14 loc) • 344 B
TypeScript
export declare type TreeProps = {
nodeKey: string;
lazy: boolean;
checkStrictly: boolean;
showCheckbox: boolean;
filterNodeMethod: (query: string, data: unknown) => boolean;
props: {
label: string;
isLeaf: boolean;
children: string;
disabled: boolean;
};
data: Array<unknown>;
};