mirror of https://github.com/wg-easy/wg-easy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
896 B
29 lines
896 B
<template>
|
|
<TooltipProvider>
|
|
<TooltipRoot :open="open" @update:open="open = $event">
|
|
<TooltipTrigger
|
|
class="mx-2 inline-flex h-4 w-4 items-center justify-center rounded-full text-gray-400 outline-none focus:shadow-sm focus:shadow-black"
|
|
as-child
|
|
>
|
|
<button @click="open = !open">
|
|
<slot />
|
|
</button>
|
|
</TooltipTrigger>
|
|
<TooltipPortal>
|
|
<TooltipContent
|
|
class="select-none whitespace-pre-line rounded bg-gray-600 px-3 py-2 text-sm leading-none text-white shadow-lg will-change-[transform,opacity]"
|
|
:side-offset="5"
|
|
>
|
|
{{ text }}
|
|
<TooltipArrow class="fill-gray-600" :width="8" />
|
|
</TooltipContent>
|
|
</TooltipPortal>
|
|
</TooltipRoot>
|
|
</TooltipProvider>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
defineProps<{ text: string }>();
|
|
|
|
const open = ref(false);
|
|
</script>
|
|
|