输入框组件。
npm install beeshell
import { Input } from 'beeshell';
import Input from 'beeshell/components/Input';
import { Input } from 'beeshell';
<Input
placeholder="请输入姓名"
textAlign="left"
value={this.state.name}
onChange={() => {}}
/>
通常与 Form 一起使用,详见 Form
Name | Type | Required | Default | Description |
---|---|---|---|---|
value | String | false | null | 输入信息 |
textAlign | String | false | 'left' | 文本位置 left right |
onChange | Function | false | null | 输入信息变化回调 |
clearButtonMode | String | false | 'while-editing' | 清空按钮 |