mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-24 01:12:54 -04:00
* feat(frontend): ✨ add debugger to creation page
* styling
Co-authored-by: Hayden <hay-kot@pm.me>
29 lines
573 B
Vue
29 lines
573 B
Vue
<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>
|
|
<section class="d-flex">
|
|
<slot name="content"></slot>
|
|
</section>
|
|
<v-divider v-if="divider" class="my-4"></v-divider>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
props: {
|
|
divider: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
},
|
|
};
|
|
</script> |