mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-07 04:19:22 +00:00
19 lines
392 B
Vue
19 lines
392 B
Vue
<script setup lang="ts">
|
|
import {
|
|
type ContextMenuSubEmits,
|
|
type ContextMenuSubProps,
|
|
useForwardPropsEmits,
|
|
} from "radix-vue";
|
|
|
|
const props = defineProps<ContextMenuSubProps>();
|
|
const emits = defineEmits<ContextMenuSubEmits>();
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits);
|
|
</script>
|
|
|
|
<template>
|
|
<ContextMenuSub v-bind="forwarded">
|
|
<slot />
|
|
</ContextMenuSub>
|
|
</template>
|