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.

28 lines
391 B

---
order: 0
title:
zh-CN: 基本
en-US: Basic
---
10 years ago
## zh-CN
数字输入框。
## en-US
Numeric-only input box.
10 years ago
```tsx
import { InputNumber } from 'antd';
import React from 'react';
10 years ago
const onChange = (value: number) => {
console.log('changed', value);
};
10 years ago
const App: React.FC = () => <InputNumber min={1} max={10} defaultValue={3} onChange={onChange} />;
export default App;
```