(id, value, result)
| 78 | } |
| 79 | |
| 80 | itemChange (id, value, result) { |
| 81 | this.items[id].$value = value; |
| 82 | |
| 83 | this.handleValidate(id, result); |
| 84 | |
| 85 | if (this.props.itemChange) { |
| 86 | this.props.itemChange(...arguments); |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | handleValidate (id, result) { |
| 91 | this.items[id].$validation = result; |
nothing calls this directly
no test coverage detected