1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-23 15:19:41 +02:00

refactor(frontend): 🚧 Add group/user CRUD support for admins

This commit is contained in:
hay-kot 2021-08-06 16:28:12 -08:00
parent 917177da5b
commit 695d7e96ae
46 changed files with 2015 additions and 102 deletions

View file

@ -1,6 +1,7 @@
<template>
<v-card flat class="pb-2">
<h2>{{ title }}</h2>
<h2 class="headline">{{ title }}</h2>
<BaseDivider width="200px" color="primary" class="my-2" thickness="1px" />
<p class="pb-0 mb-0">
<slot />
</p>
@ -12,8 +13,8 @@ export default {
props: {
title: {
type: String,
default: "Place Holder"
}
}
}
default: "Place Holder",
},
},
};
</script>