Skip to content

文字提示 Tooltip

常用于展示鼠标 反馈 时的提示信息

基本使用

Details
html
<template>
  <ik-tooltip placement="top">
    <template #content>
      <div>这是提示内容</div>
    </template>
    <ik-button>按钮</ik-button>
  </ik-tooltip>
</template>

基础配置

不显示箭头点击触发展示。可配置白色背景

点击展开
html
<template>
  <ik-tooltip placement="top" triggerType="click" :arrow="false">
    <template #content>
      <div>这是提示内容</div>
    </template>
    <ik-button>按钮</ik-button>
  </ik-tooltip>
</template>

方向配置

attrs

参数说明类型可选值默认值
placement提示展示方向string-top
triggerType触发类型stringhover / clickhover
arrow是否展示小箭头booleantrue / falsetrue
light是否白色背景booleantrue / falsefalse

MIT Licensed