diff --git a/vue/src/apps/TestView/TestView.vue b/vue/src/apps/TestView/TestView.vue index 63ad31cfb..d6ecf27a2 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: {}, }