ant-design/components/input-number/demo/digit.md

19 lines
328 B
Markdown
Raw Normal View History

2016-04-15 23:56:44 +08:00
---
order: 3
title: 小数
2016-04-15 23:56:44 +08:00
---
2016-04-15 23:39:39 +08:00
和原生的数字输入框一样value 的精度由 step 的小数位数决定。
````jsx
import { InputNumber } from 'antd';
function onChange(value) {
console.log('changed', value);
}
ReactDOM.render(
<InputNumber min={1} max={10} step={0.1} onChange={onChange} />
2016-04-15 23:39:39 +08:00
, mountNode);
````