You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
421 B
Vue
15 lines
421 B
Vue
<script setup lang="ts">
|
|
import { CollapsibleContent, type CollapsibleContentProps } from 'radix-vue';
|
|
|
|
const props = defineProps<CollapsibleContentProps>();
|
|
</script>
|
|
|
|
<template>
|
|
<CollapsibleContent
|
|
v-bind="props"
|
|
class="data-[state=closed]:animate-collapsible-up data-[state=open]:animate-collapsible-down overflow-hidden transition-all"
|
|
>
|
|
<slot />
|
|
</CollapsibleContent>
|
|
</template>
|