You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
431 B
19 lines
431 B
<script setup lang="ts">
|
|
import type { DropdownMenuSubEmits, DropdownMenuSubProps } from "reka-ui"
|
|
import {
|
|
DropdownMenuSub,
|
|
|
|
useForwardPropsEmits,
|
|
} from "reka-ui"
|
|
|
|
const props = defineProps<DropdownMenuSubProps>()
|
|
const emits = defineEmits<DropdownMenuSubEmits>()
|
|
|
|
const forwarded = useForwardPropsEmits(props, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<DropdownMenuSub v-bind="forwarded">
|
|
<slot />
|
|
</DropdownMenuSub>
|
|
</template>
|
|
|