mirror of
https://github.com/coollabsio/coolify-examples.git
synced 2026-02-26 01:08:57 +00:00
16 lines
473 B
Vue
16 lines
473 B
Vue
<script setup lang="ts">
|
|
import type { CollapsibleRootEmits, CollapsibleRootProps } from 'radix-vue';
|
|
import { CollapsibleRoot, useForwardPropsEmits } from 'radix-vue';
|
|
|
|
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>
|