mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 00:18:20 +01:00
16 lines
304 B
Vue
16 lines
304 B
Vue
<script setup lang="ts">
|
|
import type { PopoverAnchorProps } from "reka-ui";
|
|
import { PopoverAnchor } from "reka-ui";
|
|
|
|
const props = defineProps<PopoverAnchorProps>();
|
|
</script>
|
|
|
|
<template>
|
|
<PopoverAnchor
|
|
data-slot="popover-anchor"
|
|
v-bind="props"
|
|
>
|
|
<slot />
|
|
</PopoverAnchor>
|
|
</template>
|