3 天以前 1c1af9b0fc10778ae5ac13cc68fd4030affbcfe1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<script setup lang="ts">
import type { TooltipRootEmits, TooltipRootProps } from 'reka-ui';
 
import { TooltipRoot, useForwardPropsEmits } from 'reka-ui';
 
const props = defineProps<TooltipRootProps>();
const emits = defineEmits<TooltipRootEmits>();
 
const forwarded = useForwardPropsEmits(props, emits);
</script>
 
<template>
  <TooltipRoot v-slot="slotProps" data-slot="tooltip" v-bind="forwarded">
    <slot v-bind="slotProps"></slot>
  </TooltipRoot>
</template>