auth-title.vue 320 B

12345678910111213
  1. <template>
  2. <div class="mb-7 sm:mx-auto sm:w-full sm:max-w-md">
  3. <h2
  4. class="text-foreground mb-3 text-3xl font-bold leading-9 tracking-tight lg:text-4xl"
  5. >
  6. <slot></slot>
  7. </h2>
  8. <p class="text-muted-foreground lg:text-md text-sm">
  9. <slot name="desc"></slot>
  10. </p>
  11. </div>
  12. </template>