1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-20 05:39:40 +02:00
mealie/frontend/components/global/BaseCardSectionTitle.vue

20 lines
262 B
Vue
Raw Normal View History

<template>
<v-card flat class="pb-2">
<h2>{{ title }}</h2>
<p class="pb-0 mb-0">
<slot />
</p>
</v-card>
</template>
<script>
export default {
props: {
title: {
type: String,
default: "Place Holder"
}
}
}
</script>