Section.vue 241 B

1234567891011121314
  1. <template>
  2. <section :id="label.toLowerCase()" class="flex flex-col flex-1 relative">
  3. <slot></slot>
  4. </section>
  5. </template>
  6. <script setup lang="ts">
  7. defineProps({
  8. label: {
  9. type: String,
  10. default: "Section",
  11. },
  12. })
  13. </script>