mirror of
https://github.com/better-auth/better-auth.git
synced 2026-05-28 09:56:25 -05:00
20 lines
409 B
Vue
20 lines
409 B
Vue
<script setup lang="ts">
|
|
import {
|
|
ContextMenuSub,
|
|
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>
|