(node)
| 112 | } |
| 113 | |
| 114 | _initDefaultCheckedNode(node) { |
| 115 | const defaultCheckedKeys = this.defaultCheckedKeys || []; |
| 116 | |
| 117 | if (defaultCheckedKeys.indexOf(node.key) !== -1) { |
| 118 | node.setChecked(true, !this.checkStrictly); |
| 119 | } |
| 120 | } |
| 121 | |
| 122 | setDefaultCheckedKey(newVal) { |
| 123 | if (newVal !== this.defaultCheckedKeys) { |