()
| 99 | } |
| 100 | |
| 101 | _initDefaultCheckedNodes() { |
| 102 | const defaultCheckedKeys = this.defaultCheckedKeys || []; |
| 103 | const nodesMap = this.nodesMap; |
| 104 | |
| 105 | defaultCheckedKeys.forEach((checkedKey) => { |
| 106 | const node = nodesMap[checkedKey]; |
| 107 | |
| 108 | if (node) { |
| 109 | node.setChecked(true, !this.checkStrictly); |
| 110 | } |
| 111 | }); |
| 112 | } |
| 113 | |
| 114 | _initDefaultCheckedNode(node) { |
| 115 | const defaultCheckedKeys = this.defaultCheckedKeys || []; |
no test coverage detected