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

19 lines
268 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
title: 基本
---
2015-07-01 14:48:47 +08:00
2016-04-15 23:39:39 +08:00
数字输入框。
2015-07-01 14:48:47 +08:00
````jsx
import { InputNumber } from 'antd';
2015-07-01 14:48:47 +08:00
2015-07-15 16:13:00 +08:00
function onChange(value) {
console.log('changed', value);
2015-07-01 14:48:47 +08:00
}
2015-10-20 16:47:55 +08:00
ReactDOM.render(
<InputNumber min={1} max={10} defaultValue={3} onChange={onChange} />
, mountNode);
2015-07-01 14:48:47 +08:00
````