You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
268 B

---
order: 0
title: 基本
---
10 years ago
9 years ago
数字输入框。
10 years ago
````jsx
import { InputNumber } from 'antd';
10 years ago
function onChange(value) {
console.log('changed', value);
10 years ago
}
9 years ago
ReactDOM.render(
<InputNumber min={1} max={10} defaultValue={3} onChange={onChange} />
, mountNode);
10 years ago
````