mirror of
https://github.com/versia-pub/frontend.git
synced 2026-01-26 04:16:02 +01:00
13 lines
301 B
Vue
13 lines
301 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>
|