Skip to content

Tooltip 长按提示

Tooltip组件主要用于长按操作,类似微信的长按气泡

平台差异说明

App(vue)App(nvue)H5微信小程序

基本使用

WARNING

由于安卓nvue下,overflow属性不支持visible值,故此组件暂不支持安卓nvue环境。

html
<template>
  <su-tooltip text="复制" overlay></su-tooltip>
</template>

下方显示

html
<template>
  <su-tooltip text="下方显示" direction="bottom"></su-tooltip>
</template>

扩展按钮

html
<template>
  <su-tooltip text="扩展显示" :buttons="['扩展']"></su-tooltip>
</template>

高亮选中文本背景色

html
<template>
  <su-tooltip text="高亮选中文本背景色" :buttons="['扩展']" bgColor="#e3e4e6"></su-tooltip>
</template>

示例源码

点击可以查看 右侧演示页面的源码

API

Props

参数说明类型默认值可选值
text需要显示的提示文字String--
copyText点击复制按钮时,复制的文本,为空则使用text值String--
size文本大小String14-
color字体颜色String#606266-
bgColor弹出提示框时,文本的背景色Stringtransparent-
direction弹出提示的方向,top-上方,bottom-下方Stringtopbottom
zIndex弹出提示的z-index,nvue无效String | Number10071-
showCopy是否显示复制按钮Booleantruefalse
buttons扩展的按钮组Array--
overlay是否显示透明遮罩以防止触摸穿透Booleantruefalse
showToast是否显示复制成功或者失败的toastBooleantruefalse

Events

参数说明回调参数
click点击触发事件index,被点击按钮的索引

Released under the MIT License.

Released under the MIT License.