ant-design-vue/components/slider/demo/show-tooltip.md

16 lines
433 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<cn>
#### 控制 ToolTip 的显示
`tooltipVisible``true`将始终显示ToolTip反之则始终不显示即使在拖动、移入时也是如此。
</cn>
<us>
#### Control visible of ToolTip
When `tooltipVisible` is `true`, ToolTip will show always, or ToolTip will not show anyway, even if dragging or hovering.
</us>
```html
<template>
<a-slider :defaultValue="30" :tooltipVisible="true" />
</template>
```