README
使用方法
- value : input value ,多个值用英文的 , 隔开
- onChange(value) : onChange 回调函数
this.state = {
value : 'abc,def'
}
<BatchAddInput value={this.state.value} onChange={(value) => {
console.log(value);
this.setState({
value : value
})
}} />