ant-design/components/slider/demo/tip-formatter.md
2016-04-07 12:04:06 +08:00

21 lines
362 B
Markdown

# 自定义提示
- order: 5
使用 `tipFormatter` 可以格式化 `Tooltip` 的内容,设置 `tipFormatter={null}`,则隐藏 `Tooltip`
---
````jsx
import { Slider } from 'antd';
function formatter(value) {
return `${value}%`;
}
ReactDOM.render(<div>
<Slider tipFormatter={formatter} />
<Slider tipFormatter={null} />
</div>, mountNode);
````