mirror of
https://github.com/ant-design/ant-design.git
synced 2025-08-01 21:37:06 +08:00
427 B
427 B
格式化 Tooltip
内容
- order: 5
使用 tipFormatter
可以格式化 Tooltip
的内容,设置 tipFormatter={null}
,则隐藏 Tooltip
。
import { Slider } from 'antd';
function formatter(value) {
return '$' + value;
}
ReactDOM.render(<div>
<Slider tipFormatter={formatter} />
<Slider tipFormatter={null} />
</div>, document.getElementById('components-slider-demo-tip-formatter'));