feat: display witchcraft
This commit is contained in:
15
src/components/OptionCategory.vue
Normal file
15
src/components/OptionCategory.vue
Normal 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>
|
Reference in New Issue
Block a user