index.ts 381 B

1234567891011121314151617
  1. import type { TreeProps } from "../types";
  2. export const CHECK_STATUS_MAP = {
  3. checked: "checked", // 选中
  4. unchecked: "unchecked", // 未选中
  5. indeterminate: "indeterminate" // 半选
  6. } as const;
  7. export const DefaultTreeProps: TreeProps = {
  8. id: "id",
  9. label: "label",
  10. children: "children",
  11. disabled: "disabled",
  12. leaf: "leaf",
  13. append: "append",
  14. icon: "icon"
  15. };