mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
ff31a5b555
This reverts commit 7a07b128d1
.
328 B
328 B
order | title |
---|---|
3 | 小数 |
和原生的数字输入框一样,value 的精度由 step 的小数位数决定。
import { InputNumber } from 'antd';
function onChange(value) {
console.log('changed', value);
}
ReactDOM.render(
<InputNumber min={1} max={10} step={0.1} onChange={onChange} />
, mountNode);