This repository has been archived on 2025-12-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2025-10-20 08:57:51 +02:00
|
|
|
<script setup lang="ts">
|
2025-10-23 10:23:30 +02:00
|
|
|
import type { TooltipRootEmits, TooltipRootProps } from "reka-ui"
|
|
|
|
|
import { TooltipRoot, useForwardPropsEmits } from "reka-ui"
|
2025-10-20 08:57:51 +02:00
|
|
|
|
|
|
|
|
const props = defineProps<TooltipRootProps>()
|
|
|
|
|
const emits = defineEmits<TooltipRootEmits>()
|
|
|
|
|
|
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits)
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2025-10-23 10:23:30 +02:00
|
|
|
<TooltipRoot v-bind="forwarded">
|
2025-10-20 08:57:51 +02:00
|
|
|
<slot />
|
|
|
|
|
</TooltipRoot>
|
|
|
|
|
</template>
|