1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-21 14:19:41 +02:00
mealie/frontend/components/global/BaseCardSectionTitle.vue

22 lines
412 B
Vue
Raw Normal View History

<template>
<v-card flat class="pb-2">
<h2 class="headline">{{ title }}</h2>
<!-- <BaseDivider width="200px" color="primary" class="my-2" thickness="1px" /> -->
<p class="pb-0 mb-0">
<slot />
</p>
<v-divider class="my-4"></v-divider>
</v-card>
</template>
<script>
export default {
props: {
title: {
type: String,
default: "Place Holder",
},
},
};
</script>