Skip to content
On this page

文字提示 Tooltip

悬浮提示,展现需要关注的信息

基本使用

我是提示内容
Show Code
vue
<template>
  <n-tooltip :maxWidth="240">
    <template #title>我是提示内容</template>
    <n-button type="primary">悬浮</n-button>
  </n-tooltip>
</template>

自定义样式

我是提示内容,我是提示内容,我是提示内容,我是提示内容
Show Code
vue
<template>
  <n-tooltip :maxWidth="300" :fontSize="16" color="rgba(0, 0, 0, 0.85)" backgroundColor="#FFF">
    <template #title>我是提示内容,我是提示内容,我是提示内容,我是提示内容</template>
    <n-button type="primary">悬浮</n-button>
  </n-tooltip>
</template>

API

参数说明类型默认值
maxWidth提示框内容最大宽度,单位pxnumber120
content展示的文本string'暂无内容'
title提示的文本string'暂无提示'
fontSize提示文本字体大小,单位pxnumber14
color提示文本字体颜色string'#FFF'
backgroundColor提示框背景色string'rgba(0,0,0,.85)'

Released under the MIT License.