mirror of
https://github.com/ant-design/ant-design.git
synced 2025-01-05 09:30:32 +08:00
342 B
342 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);