Skip to content
Snippets Groups Projects
ASection.vue 494 B
Newer Older
  • Learn to ignore specific revisions
  •     <header class="tw-relative tw-flex tw-items-center tw-gap-6 tw-mt-12 tw-mb-4 first:tw-mt-0">
    
          <SectionTitle>{{ title }}</SectionTitle>
    
          <SectionTitle class="tw-mb-0">{{ title }}</SectionTitle>
    
          <slot name="header" />
        </header>
    
        <slot />
      </section>
    </template>
    
    <script lang="ts" setup>
    import SectionTitle from '@/components/generic/SectionTitle.vue'
    
    defineOptions({ compatConfig: { MODE: 3 } })
    defineProps<{
      title: string
    }>()
    </script>