mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-03 16:39:41 +08:00
6776bb8916
* docs: update demo * chore: add script * test: fix demo test * docs: convert demos * chore: move script * test: remove react-dom import * chore: update deps * docs: update riddle js * test: fix image test * docs: fix riddle demo
508 B
508 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}%`;
}
export default () => (
<>
<Slider tipFormatter={formatter} />
<Slider tipFormatter={null} />
</>
);