forked from akanyan/STARTLINER
16 lines
290 B
Vue
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>
|