api-client/components/app/Section.vue

19 lines
287 B
Vue
Raw Normal View History

<template>
<section :id="label.toLowerCase()" class="flex flex-col flex-1">
2021-07-03 13:14:58 +00:00
<slot></slot>
</section>
</template>
<script lang="ts">
import Vue from "vue"
export default Vue.extend({
2019-11-02 05:32:21 +00:00
props: {
label: {
type: String,
default: "Section",
2019-10-22 12:02:26 +00:00
},
2020-02-25 16:10:40 +00:00
},
})
2019-08-25 08:37:21 +00:00
</script>