adrema/resources/js/views/member/Box.vue

31 lines
688 B
Vue
Raw Normal View History

2022-11-22 00:37:34 +01:00
<template>
<section class="bg-gray-800 p-3 rounded-lg flex flex-col">
2022-11-24 00:59:40 +01:00
<div class="flex items-center">
<heading class="col-span-full" v-if="heading">{{ heading }}</heading>
<slot name="in-title"></slot>
</div>
2022-11-22 01:55:57 +01:00
<main :class="{'mt-3': heading, 'containerClass': true}">
2022-11-22 00:37:34 +01:00
<slot></slot>
</main>
</section>
</template>
<script>
export default {
props: {
heading: {
type: String,
},
containerClass: {
default: function () {
return '';
},
},
},
components: {
heading: () => import('./Heading'),
},
};
</script>