Pane.vue 415 B

12345678910111213141516171819202122232425262728293031
  1. <script setup lang="ts">
  2. defineProps<{
  3. title: string
  4. }>()
  5. </script>
  6. <template>
  7. <div
  8. class="relative
  9. px-4
  10. py-6
  11. border
  12. border-solid
  13. border-gray-200
  14. rounded
  15. my-4"
  16. >
  17. <span
  18. class="absolute
  19. bg-white
  20. text-xs
  21. dark:bg-[#151515]
  22. text-gray-400
  23. px-2
  24. rounded
  25. -top-2
  26. left-2"
  27. >{{ title }}</span>
  28. <slot />
  29. </div>
  30. </template>