Skip to content

V0.0.2

Compare
Choose a tag to compare
@lycHub lycHub released this 29 Jun 14:18
· 43 commits to master since this release

TreeNodeOptions可传任意属性

interface TreeNodeOptions {
  // ...
  [key: string]: any;
}

BaseTreeNode新增origin属性,返回原始数据:

interface BaseTreeNode{
// ...
 origin: any;
}