mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-28 16:54:19 -04:00
refactor(frontend): 🏗️ scafold pages and componenets folder
Setup the file structure for components, pages, layouts, api, and all new frontend structure
This commit is contained in:
19
frontend/components/global/BaseCardSectionTitle.vue
Normal file
19
frontend/components/global/BaseCardSectionTitle.vue
Normal file
@@ -0,0 +1,19 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user