mirror of
https://github.com/versia-pub/frontend.git
synced 2026-01-26 04:16:02 +01:00
12 lines
304 B
Vue
12 lines
304 B
Vue
<script setup lang="ts">
|
|
import { CollapsibleContent, type CollapsibleContentProps } from "reka-ui";
|
|
|
|
const props = defineProps<CollapsibleContentProps>();
|
|
</script>
|
|
|
|
<template>
|
|
<CollapsibleContent data-slot="collapsible-content" v-bind="props">
|
|
<slot/>
|
|
</CollapsibleContent>
|
|
</template>
|