mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 19:19:57 +08:00
341 B
341 B
order | title | ||||
---|---|---|---|---|---|
0 |
|
zh-CN
数字输入框。
en-US
Numeric-only input box.
import { InputNumber } from 'antd';
function onChange(value) {
console.log('changed', value);
}
ReactDOM.render(
<InputNumber min={1} max={10} defaultValue={3} onChange={onChange} />
, mountNode);