PHP Classes

File: resources/js/components/ui/collapsible/Collapsible.vue

Recommend this page to a friend!
  Packages of Niko Peikrishvili   Ticker   resources/js/components/ui/collapsible/Collapsible.vue   Download  
File: resources/js/components/ui/collapsible/Collapsible.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: 3 months ago
Size: 456 bytes
 

Contents

Class file image Download
<script setup lang="ts"> import type { CollapsibleRootEmits, CollapsibleRootProps } from "reka-ui" import { CollapsibleRoot, useForwardPropsEmits } from "reka-ui" const props = defineProps<CollapsibleRootProps>() const emits = defineEmits<CollapsibleRootEmits>() const forwarded = useForwardPropsEmits(props, emits) </script> <template> <CollapsibleRoot v-slot="{ open }" v-bind="forwarded"> <slot :open="open" /> </CollapsibleRoot> </template>