mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 15:51:01 +08:00
20 lines
390 B
Vue
20 lines
390 B
Vue
<script setup lang="ts">
|
|
import {
|
|
TooltipRoot,
|
|
type TooltipRootEmits,
|
|
type TooltipRootProps,
|
|
useForwardPropsEmits,
|
|
} from "reka-ui";
|
|
|
|
const props = defineProps<TooltipRootProps>();
|
|
const emits = defineEmits<TooltipRootEmits>();
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits);
|
|
</script>
|
|
|
|
<template>
|
|
<TooltipRoot v-bind="forwarded">
|
|
<slot />
|
|
</TooltipRoot>
|
|
</template>
|