(newVal)
| 61 | } |
| 62 | |
| 63 | setData(newVal) { |
| 64 | const instanceChanged = newVal !== this.root.data; |
| 65 | this.root.setData(newVal); |
| 66 | if (instanceChanged) { |
| 67 | this._initDefaultCheckedNodes(); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | getNode(data) { |
| 72 | const key = typeof data !== 'object' ? data : getNodeKey(this.key, data); |
nothing calls this directly
no test coverage detected