Skip to content

Tooltip

Commonly used to display prompt information.

Basic Usage

Here we provide 12 different placement directions, which can be understood through the following complete examples.

You can control whether to manually display tooltips through v-model.

Use the content property to determine the prompt information when displayed.

The display effect is determined by the placement property:

  • placement property value is: direction-alignment;
  • Four directions: top, left, right, bottom;
  • Three alignment positions: start, ''(default empty for center), end;

For example, placement="left-end" means the prompt information appears on the left side of the target element, and the bottom of the prompt information aligns with the bottom of the target element.

Since the uni-app component cannot listen for clicks outside itself, to automatically close the tooltip when clicking elsewhere on the page, it is recommended to use the component library's useQueue hook (which will close all dropmenu, popover, toast, swipeAction, fab), and listen for click event bubbling on the root element of the page.

WARNING

If there is a scenario where the user manually clicks somewhere outside of tooltip like a button to slide out tooltip, then you need to add click to the clicked element (in this case the button) to prevent event bubbling to the root element, avoiding triggering closeOutside which would close the tooltip that you want to manually open.

html
<view @click="closeOutside">
  <wd-tooltip @change="handleChange" placement="top" content="top prompt text">
    <wd-button>top</wd-button>
  </wd-tooltip>
</view>
typescript
import { useQueue } from '@/uni_modules/wot-design-uni'

const { closeOutside } = useQueue()

const show = ref<boolean>(false)

More Content

Display multiple lines of text or set the format of text content

Use named slot to distribute content, replacing the content property in tooltip.

When using slots, please use the useContentSlot property to ensure the content slot is enabled.

Note

Currently, when using the content slot, the component cannot correctly obtain the width and height of the bubble internally. At this time, the offset placement cannot take effect, such as bottom-end.

html
<wd-tooltip placement="right" useContentSlot>
  <wd-button>Multiple Lines</wd-button>
  <template #content>
    <view style="color: red; padding: 5px; width: 90px">
      <view>Multiple Line 1</view>
      <view>Multiple Line 2</view>
      <view>Multiple Line 3</view>
    </view>
  </template>
</wd-tooltip>
typescript
import { useQueue } from '@/uni_modules/wot-design-uni'

const { closeOutside } = useQueue()
const show = ref<boolean>(false)

Show Close Button

The Tooltip component controls whether to display the close button through the show-close property.

html
<wd-tooltip content="Show Close Button" show-close>
  <wd-button>Show Close Button</wd-button>
</wd-tooltip>

Control Visibility

Control the visibility of tooltip by binding v-model.

html
<wd-button plain @click="control" size="small" class="button-control">
  {{ show ? 'Close' : 'Open' }}
</wd-button>

<wd-tooltip placement="top" content="Control Visibility" v-model="show">
  <wd-button :round="false">top</wd-button>
</wd-tooltip>
ts
import { ref } from 'vue'

const show = ref<boolean>(false)

const control = () => {
  show.value = !show.value
}

Advanced Extension

In addition to these basic settings, there are some properties that allow users to better customize their effects:

If you need to disable the tooltip functionality, the disabled property can meet this requirement. It accepts a Boolean, set it to true to disable.

html
<wd-tooltip placement="right-end" content="Disabled" disabled>
  <wd-button>Disabled</wd-button>
</wd-tooltip>

Control Position

Note: Since mini-programs cannot dynamically insert nodes, the text bubble position will align with the outermost position of the passed positioning node. If the text prompt position is not where you want it to render, you can achieve the desired effect by controlling the overall position of the component. Example of incorrect usage:

html
<wd-tooltip placement="top" content="top prompt text">
  <wd-button custom-style="margin-left: 100px">top</wd-button>
</wd-tooltip>
<wd-tooltip placement="top" content="top prompt text">
  <wd-button custom-style="position: absolute; left: 100px;">top</wd-button>
</wd-tooltip>

Correct usage:

html
<wd-tooltip placement="top" content="top prompt text" custom-style="margin-left: 100px">
  <wd-button>top</wd-button>
</wd-tooltip>
<wd-tooltip placement="top" content="top prompt text" custom-style="position: absolute; left: 100px;">
  <wd-button>top</wd-button>
</wd-tooltip>

Attributes

ParameterDescriptionTypeOptionsDefaultVersion
showWhether visibleboolean-false-
contentContent to display, can also be passed through slot#contentstring / array---
placementPosition of Tooltipstringtop / top-start / top-end / bottom / bottom-start / bottom-end / left / left-start / left-end / right / right-start / right-endbottom-
disabledWhether Tooltip is disabledboolean-false-
visible-arrowWhether to show Tooltip arrowboolean-true-
offsetOffset of appearance positionnumber / number[]-{x:0, y:0}1.3.12
show-closeWhether to show close button inside Tooltipboolean-false-

Events

Event NameDescriptionParametersVersion
openTriggered when showing--
closeTriggered when hiding--
changeTriggered when visibility changes--

Methods

Method NameDescriptionParametersVersion
openOpen tooltip dialog--
closeClose tooltip dialog--

Slot

NameDescriptionVersion
contentMultiple lines of content or custom styles-

Tooltip External Style Classes

Class NameDescriptionVersion
custom-classRoot node style-
custom-arrowArrow style-
custom-popTooltip style-

Source Code

Documentation
Component

Released under the MIT License.

Released under the MIT License.