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