mirror of
https://github.com/setube/ogame-vue-ts.git
synced 2026-05-12 16:05:12 +08:00
13 lines
296 B
Vue
13 lines
296 B
Vue
<template>
|
|
<PopoverAnchor data-slot="popover-anchor" v-bind="props">
|
|
<slot />
|
|
</PopoverAnchor>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import type { PopoverAnchorProps } from 'reka-ui'
|
|
import { PopoverAnchor } from 'reka-ui'
|
|
|
|
const props = defineProps<PopoverAnchorProps>()
|
|
</script>
|