mirror of
https://github.com/versia-pub/frontend.git
synced 2025-12-06 08:28:20 +01:00
12 lines
392 B
Vue
12 lines
392 B
Vue
|
|
<script setup lang="ts">
|
||
|
|
import { CollapsibleContent, type CollapsibleContentProps } from "radix-vue";
|
||
|
|
|
||
|
|
const props = defineProps<CollapsibleContentProps>();
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<CollapsibleContent v-bind="props" class="overflow-hidden transition-all data-[state=closed]:animate-collapsible-up data-[state=open]:animate-collapsible-down">
|
||
|
|
<slot />
|
||
|
|
</CollapsibleContent>
|
||
|
|
</template>
|