mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-16 01:41:02 +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
30 lines
508 B
Markdown
30 lines
508 B
Markdown
---
|
|
order: 3
|
|
title:
|
|
zh-CN: 自定义提示
|
|
en-US: Customize tooltip
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
使用 `tipFormatter` 可以格式化 `Tooltip` 的内容,设置 `tipFormatter={null}`,则隐藏 `Tooltip`。
|
|
|
|
## en-US
|
|
|
|
Use `tipFormatter` to format content of `Tooltip`. If `tipFormatter` is null, hide it.
|
|
|
|
```jsx
|
|
import { Slider } from 'antd';
|
|
|
|
function formatter(value) {
|
|
return `${value}%`;
|
|
}
|
|
|
|
export default () => (
|
|
<>
|
|
<Slider tipFormatter={formatter} />
|
|
<Slider tipFormatter={null} />
|
|
</>
|
|
);
|
|
```
|