Skip to content
Snippets Groups Projects
AHousekeepingSection.vue 302 B
Newer Older
  • Learn to ignore specific revisions
  • <template>
      <div
    
        class="tw-w-min tw-min-w-64 tw-px-6 tw-py-4 tw-border tw-border-gray-200 tw-border-solid tw-rounded-md"
    
      >
        <h3 class="tw-font-bold tw-text-base tw-pb-1">{{ title }}</h3>
        <slot />
      </div>
    </template>
    
    <script lang="ts" setup>
    defineProps<{
      title: string
    }>()
    </script>