From c5ce197ed7ec971fc34017970122c6240e0c8376 Mon Sep 17 00:00:00 2001 From: vabene1111 Date: Thu, 16 Feb 2023 18:28:50 +0100 Subject: [PATCH] test setup done for real --- vue/src/apps/TestView/TestView.vue | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/vue/src/apps/TestView/TestView.vue b/vue/src/apps/TestView/TestView.vue index 63ad31cf..d6ecf27a 100644 --- a/vue/src/apps/TestView/TestView.vue +++ b/vue/src/apps/TestView/TestView.vue @@ -14,6 +14,20 @@ + Meal Plan Card +
+
+ +
+
+ @@ -36,6 +50,7 @@ export default { return { recipe: undefined, recipe_detailed: false, + meal_plan: undefined } }, mounted() { @@ -44,6 +59,9 @@ export default { apiClient.retrieveRecipe('119').then((r) => { this.recipe = r.data }) + apiClient.retrieveMealPlan('1').then((r) => { + this.meal_plan = r.data + }) }, methods: {}, }