mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 21:19:37 +08:00
docs: update Slider docs for tipFormatter
This commit is contained in:
parent
813be9145d
commit
2b3878549a
18
components/slider/demo/tip-formatter.md
Normal file
18
components/slider/demo/tip-formatter.md
Normal file
@ -0,0 +1,18 @@
|
||||
# 格式化 `Tooltip` 内容
|
||||
|
||||
- order: 5
|
||||
|
||||
使用 `tipFormatter` 可以格式化 `Tooltip` 的内容。
|
||||
|
||||
---
|
||||
|
||||
````jsx
|
||||
import { Slider } from 'antd';
|
||||
|
||||
function formatter(value) {
|
||||
return '$' + value;
|
||||
}
|
||||
|
||||
ReactDOM.render(<Slider tipFormatter={formatter} />
|
||||
, document.getElementById('components-slider-demo-tip-formatter'));
|
||||
````
|
@ -25,3 +25,4 @@
|
||||
| included | Boolean | true | `marks` 不为空对象时有效,值为 true 时表示值为包含关系,false 表示并列
|
||||
| disabled | Boolean | false | 值为 `true` 时,滑块为禁用状态
|
||||
| onChange | Function | NOOP | 当 Slider 的值发生改变时,会触发 onChange 事件,并把改变后的值作为参数传入。
|
||||
| tipFormatter | Function | | Slider 会把当前值传给 `tipFormatter`,并在 Tooltip 中显示 `tipFormatter` 的返回值。
|
||||
|
Loading…
Reference in New Issue
Block a user