PHP Classes

File: resources/js/components/ui/dropdown-menu/DropdownMenuSub.vue

Recommend this page to a friend!
  Packages of Niko Peikrishvili   Ticker   resources/js/components/ui/dropdown-menu/DropdownMenuSub.vue   Download  
File: resources/js/components/ui/dropdown-menu/DropdownMenuSub.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Ticker
Application to track and manage to do tasks
Author: By
Last change:
Date: 2 months ago
Size: 430 bytes
 

Contents

Class file image Download
<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>