feat: display witchcraft

This commit is contained in:
2025-03-03 19:20:28 +00:00
parent 898caf1430
commit cde0752da2
12 changed files with 659 additions and 169 deletions

View File

@ -0,0 +1,15 @@
<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>