mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-05-24 01:12:54 -04:00
* feat(frontend): ✨ add UI for testing email configuration * feat(backend): ✨ add email service with common templates (WIP) * test(backend): ✅ add basic tests for email configuration * set defaults * add email variables Co-authored-by: Hayden <hay-kot@pm.me>
30 lines
493 B
Vue
30 lines
493 B
Vue
<template>
|
|
<v-card 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>
|