偏右
8 years ago
committed by
Wei Zhu
5 changed files with 63 additions and 3 deletions
@ -0,0 +1,26 @@ |
|||
--- |
|||
order: 4 |
|||
title: |
|||
zh-CN: 格式化展示 |
|||
en-US: Formatter |
|||
--- |
|||
|
|||
## zh-CN |
|||
|
|||
展示具有具体含义的数据。 |
|||
|
|||
## en-US |
|||
|
|||
Display value within it's situation. |
|||
|
|||
````jsx |
|||
import { InputNumber } from 'antd'; |
|||
|
|||
function onChange(value) { |
|||
console.log('changed', value); |
|||
} |
|||
|
|||
ReactDOM.render( |
|||
<InputNumber formatter={value => `$ ${value}`} defaultValue={100} onChange={onChange} /> |
|||
, mountNode); |
|||
```` |
Loading…
Reference in new issue