mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-16 03:18:11 +00:00
331 B
331 B
order, title
| order | title | ||||
|---|---|---|---|---|---|
| 0 |
|
zh-CN
数字输入框。
en-US
Numeric-only input box.
import { InputNumber } from 'antd';
function onChange(value) {
console.log('changed', value);
}
ReactDOM.render(<InputNumber min={1} max={10} defaultValue={3} onChange={onChange} />, mountNode);