mealie/frontend/components/global/BaseCardSectionTitle.vue
hay-kot 91f56b42de refactor(frontend): 🏗️ scafold pages and componenets folder
Setup the file structure for components, pages, layouts, api, and all new frontend structure
2021-07-31 14:45:28 -08:00

20 lines
262 B
Vue

<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>