Files
STARTLINER/src/components/OptionCategory.vue
2025-03-03 19:20:28 +00:00

16 lines
290 B
Vue

<script setup lang="ts">
import Fieldset from 'primevue/fieldset';
defineProps({
title: String,
});
</script>
<template>
<Fieldset :legend="title" :toggleable="true">
<div class="flex w-full flex-col gap-1">
<slot />
</div>
</Fieldset>
</template>