用法
在 Tooltip 的默认插槽中使用 Button 或任何其他组件。
App
组件包裹你的应用,该组件使用了TooltipProvider
组件,来自 Reka UI。文本
使用 text
prop 属性来设置 Tooltip 的内容。
<template>
<UTooltip text="Open on GitHub">
<UButton label="Open" color="neutral" variant="subtle" />
</UTooltip>
</template>
Kbds
使用 kbds
prop 属性在 Tooltip 中渲染 Kbd 组件。
<template>
<UTooltip text="Open on GitHub" :kbds="['meta', 'G']">
<UButton label="Open" color="neutral" variant="subtle" />
</UTooltip>
</template>
meta
,在 macOS 上显示为 ⌘
,在其他平台上显示为 Ctrl
。延迟
使用 delay-duration
prop 属性来更改 Tooltip 显示之前的延迟。例如,你可以将其设置为 0
以使其立即显示。
<template>
<UTooltip :delay-duration="0" text="Open on GitHub">
<UButton label="Open" color="neutral" variant="subtle" />
</UTooltip>
</template>
App
组件中的 tooltip.delayDuration
选项进行全局配置。内容
使用 content
prop 属性来控制 Tooltip 内容的渲染方式,例如它的 align
或 side
等。
<template>
<UTooltip
:content="{
align: 'center',
side: 'bottom',
sideOffset: 8
}"
text="Open on GitHub"
>
<UButton label="Open" color="neutral" variant="subtle" />
</UTooltip>
</template>
箭头
使用 arrow
prop 属性在 Tooltip 上显示箭头。
<template>
<UTooltip arrow text="Open on GitHub">
<UButton label="Open" color="neutral" variant="subtle" />
</UTooltip>
</template>
禁用
使用 disabled
prop 属性来禁用 Tooltip。
<template>
<UTooltip disabled text="Open on GitHub">
<UButton label="Open" color="neutral" variant="subtle" />
</UTooltip>
</template>
示例
控制打开状态
你可以使用 default-open
prop 属性或 v-model:open
指令来控制打开状态。
<script setup lang="ts">
const open = ref(false)
defineShortcuts({
o: () => open.value = !open.value
})
</script>
<template>
<UTooltip v-model:open="open" text="Open on GitHub">
<UButton label="Open" color="neutral" variant="subtle" />
</UTooltip>
</template>
defineShortcuts
,你可以通过按下 O 来切换 Tooltip。API
Props
Prop | 默认值 | 类型 |
---|---|---|
text |
Tooltip 的文本内容。 | |
kbds |
要在 Tooltip 中显示的键盘按键。
| |
content |
|
Tooltip 的内容。 |
arrow |
|
在 Tooltip 旁边显示箭头。 |
portal |
|
在 portal 中渲染 Tooltip。 |
defaultOpen |
Tooltip 初始渲染时的打开状态。当你不需要控制其打开状态时使用。 | |
open |
Tooltip 的受控打开状态。 | |
delayDuration |
|
覆盖赋予 |
disableHoverableContent |
阻止 Tooltip.Content 在悬停时保持打开状态。禁用此功能会产生可访问性后果。继承自 Tooltip.Provider。 | |
disableClosingTrigger |
|
当 |
disabled |
|
当 |
ignoreNonKeyboardFocus |
|
如果焦点不是来自键盘,通过匹配 |
ui |
|
插槽
插槽 | 类型 |
---|---|
default |
|
content |
|
事件
事件 | 类型 |
---|---|
update:open |
|
主题
export default defineAppConfig({
ui: {
tooltip: {
slots: {
content: 'flex items-center gap-1 bg-(--ui-bg) text-(--ui-text-highlighted) shadow-sm rounded-(--ui-radius) ring ring-(--ui-border) h-6 px-2 py-1 text-xs select-none data-[state=delayed-open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in] pointer-events-auto',
arrow: 'fill-(--ui-border)',
text: 'truncate',
kbds: "hidden lg:inline-flex items-center shrink-0 gap-0.5 before:content-['·'] before:me-0.5",
kbdsSize: 'sm'
}
}
}
})
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import ui from '@nuxt/ui/vite'
export default defineConfig({
plugins: [
vue(),
ui({
ui: {
tooltip: {
slots: {
content: 'flex items-center gap-1 bg-(--ui-bg) text-(--ui-text-highlighted) shadow-sm rounded-(--ui-radius) ring ring-(--ui-border) h-6 px-2 py-1 text-xs select-none data-[state=delayed-open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in] pointer-events-auto',
arrow: 'fill-(--ui-border)',
text: 'truncate',
kbds: "hidden lg:inline-flex items-center shrink-0 gap-0.5 before:content-['·'] before:me-0.5",
kbdsSize: 'sm'
}
}
}
})
]
})
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import uiPro from '@nuxt/ui-pro/vite'
export default defineConfig({
plugins: [
vue(),
uiPro({
ui: {
tooltip: {
slots: {
content: 'flex items-center gap-1 bg-(--ui-bg) text-(--ui-text-highlighted) shadow-sm rounded-(--ui-radius) ring ring-(--ui-border) h-6 px-2 py-1 text-xs select-none data-[state=delayed-open]:animate-[scale-in_100ms_ease-out] data-[state=closed]:animate-[scale-out_100ms_ease-in] pointer-events-auto',
arrow: 'fill-(--ui-border)',
text: 'truncate',
kbds: "hidden lg:inline-flex items-center shrink-0 gap-0.5 before:content-['·'] before:me-0.5",
kbdsSize: 'sm'
}
}
}
})
]
})