mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-24 01:12:54 -04:00
* style(frontend): 💄 add darktheme custom * add dummy users in dev mode * feat(frontend): ✨ add group permissions editor UI * feat(backend): ✨ add group permissions setters * test(backend): ✅ tests for basic permission get/set (WIP) Needs more testing * remove old test * chore(backend): copy template.env on setup * feat(frontend): ✨ enable send invitation via email * feat(backend): ✨ enable send invitation via email * feat: ✨ add app config checker for site-settings * refactor(frontend): ♻️ consolidate bool checks Co-authored-by: Hayden <hay-kot@pm.me>
30 lines
512 B
Vue
30 lines
512 B
Vue
<template>
|
|
<v-card color="background" flat class="pb-2">
|
|
<v-card-title class="headline py-0">
|
|
<v-icon v-if="icon !== ''" left>
|
|
{{ icon }}
|
|
</v-icon>
|
|
{{ title }}
|
|
</v-card-title>
|
|
<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",
|
|
},
|
|
icon: {
|
|
type: String,
|
|
default: "",
|
|
},
|
|
},
|
|
};
|
|
</script>
|