1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-07-24 15:49:42 +02:00

Refactor/group page (#666)

* refactor(backend): ♻️ Refactor base class to be abstract and create a router factory method

* feat(frontend):  add group edit

* refactor(backend):  add group edit support

Co-authored-by: hay-kot <hay-kot@pm.me>
This commit is contained in:
Hayden 2021-09-01 21:39:40 -08:00 committed by GitHub
parent 9b1bf56a5d
commit 990244e37e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
37 changed files with 749 additions and 196 deletions

View file

@ -43,27 +43,24 @@
<script lang="ts">
import { defineComponent } from "@nuxtjs/composition-api";
import { useCookbooks } from "@/composables/use-cookbooks";
import { useCookbooks } from "@/composables/use-group-cookbooks";
import draggable from "vuedraggable";
export default defineComponent({
components: { draggable },
layout: "admin",
setup() {
const { cookbooks, actions, workingCookbookData, deleteTargetId, validForm } = useCookbooks();
const { cookbooks, actions } = useCookbooks();
return {
cookbooks,
actions,
workingCookbookData,
deleteTargetId,
validForm,
};
},
});
</script>
<style scoped>
<style>
.my-border {
border-left: 5px solid var(--v-primary-base);
}