2021-09-04 20:24:32 -08:00
|
|
|
<template>
|
|
|
|
<div class="mt-4">
|
|
|
|
<section class="d-flex flex-column align-center">
|
|
|
|
<slot name="header"></slot>
|
|
|
|
<h2 class="headline">
|
|
|
|
<slot name="title"> 👋 Here's a Title </slot>
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<h3 class="subtitle-1">
|
|
|
|
<slot> </slot>
|
|
|
|
</h3>
|
|
|
|
</section>
|
2021-10-19 18:45:03 -08:00
|
|
|
<section class="d-flex">
|
|
|
|
<slot name="content"></slot>
|
|
|
|
</section>
|
2021-09-04 20:24:32 -08:00
|
|
|
<v-divider v-if="divider" class="my-4"></v-divider>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-09 07:15:23 +01:00
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from "@nuxtjs/composition-api";
|
|
|
|
|
|
|
|
export default defineComponent({
|
2021-09-04 20:24:32 -08:00
|
|
|
props: {
|
|
|
|
divider: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false,
|
|
|
|
},
|
|
|
|
},
|
2022-01-09 07:15:23 +01:00
|
|
|
});
|
|
|
|
</script>
|