Skip to content

Releases: lycHub/ysx-library

V0.0.2

29 Jun 14:18
Compare
Choose a tag to compare

TreeNodeOptions可传任意属性

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

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

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