Files
jindengchen-ai-report/cool-unix/uni_modules/cool-ui/components/cl-tree/props.ts

18 lines
354 B
TypeScript
Raw Normal View History

2025-11-13 10:36:23 +08:00
import type { ClTreeItem, ClTreeNodeInfo } from "../../types";
export type ClTreePassThrough = {
className?: string;
};
export type ClTreeProps = {
className?: string;
pt?: ClTreePassThrough;
modelValue?: any | any;
list?: ClTreeItem[];
icon?: string;
expandIcon?: string;
checkStrictly?: boolean;
checkable?: boolean;
multiple?: boolean;
};