mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 14:29:33 +08:00
516 B
516 B
order | title | ||||
---|---|---|---|---|---|
3 |
|
zh-CN
使用 tipFormatter
可以格式化 Tooltip
的内容,设置 tipFormatter={null}
,则隐藏 Tooltip
。
en-US
Use tipFormatter
to format content of Tooltip
. If tipFormatter
is null, hide it.
import { Slider } from 'antd';
function formatter(value) {
return `${value}%`;
}
ReactDOM.render(
<>
<Slider tipFormatter={formatter} />
<Slider tipFormatter={null} />
</>,
mountNode,
);