frontend/app/components/ui/dropdown-menu/DropdownMenuSub.vue

20 lines
464 B
Vue
Raw Permalink Normal View History

<script setup lang="ts">
import {
DropdownMenuSub,
type DropdownMenuSubEmits,
type DropdownMenuSubProps,
useForwardPropsEmits,
} from "reka-ui";
const props = defineProps<DropdownMenuSubProps>();
const emits = defineEmits<DropdownMenuSubEmits>();
const forwarded = useForwardPropsEmits(props, emits);
</script>
<template>
2025-12-09 22:32:22 +01:00
<DropdownMenuSub data-slot="dropdown-menu-sub" v-bind="forwarded">
2026-01-09 21:47:12 +01:00
<slot />
2025-12-09 22:32:22 +01:00
</DropdownMenuSub>
</template>