/** * 树节点属性 */ export interface TreeNodeProps { /** * 数据表 */ table: any; /** * 布局 */ layout: any; /** * 数据行 */ row: any; /** * 节点信息 */ node: any; }