(array, defaultProps = {})
| 233 | } |
| 234 | |
| 235 | doCreateChildren(array, defaultProps = {}) { |
| 236 | array.forEach((item) => { |
| 237 | this.insertChild(Object.assign({ data: item }, defaultProps)); |
| 238 | }); |
| 239 | } |
| 240 | |
| 241 | collapse() { |
| 242 | this.expanded = false; |
no test coverage detected