Files
hoppscotch/packages/hoppscotch-app/components/app/Section.vue
2021-11-17 17:25:18 +05:30

15 lines
241 B
Vue

<template>
<section :id="label.toLowerCase()" class="flex flex-col flex-1 relative">
<slot></slot>
</section>
</template>
<script setup lang="ts">
defineProps({
label: {
type: String,
default: "Section",
},
})
</script>