(props)
| 62 | } |
| 63 | |
| 64 | itemBind (props) { |
| 65 | this.items[props.id] = props; |
| 66 | |
| 67 | if (this.props.itemBind) { |
| 68 | this.props.itemBind(props); |
| 69 | } |
| 70 | } |
| 71 | |
| 72 | itemUnbind (id) { |
| 73 | delete this.items[id]; |
nothing calls this directly
no outgoing calls
no test coverage detected