mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-10 20:37:46 +00:00
20 lines
422 B
Vue
20 lines
422 B
Vue
<script setup lang="ts">
|
|
import { type MenubarSubEmits, useForwardPropsEmits } from "radix-vue";
|
|
|
|
interface MenubarSubRootProps {
|
|
defaultOpen?: boolean;
|
|
open?: boolean;
|
|
}
|
|
|
|
const props = defineProps<MenubarSubRootProps>();
|
|
const emits = defineEmits<MenubarSubEmits>();
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits);
|
|
</script>
|
|
|
|
<template>
|
|
<MenubarSub v-bind="forwarded">
|
|
<slot />
|
|
</MenubarSub>
|
|
</template>
|