15 lines
393 B
Vue
15 lines
393 B
Vue
<script setup lang="ts">
|
|
import { HoverCardRoot, type HoverCardRootEmits, type HoverCardRootProps, useForwardPropsEmits } from 'radix-vue'
|
|
|
|
const props = defineProps<HoverCardRootProps>()
|
|
const emits = defineEmits<HoverCardRootEmits>()
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<HoverCardRoot v-bind="forwarded">
|
|
<slot />
|
|
</HoverCardRoot>
|
|
</template>
|