Skip to content

Commit

Permalink
recipe view shopping
Browse files Browse the repository at this point in the history
  • Loading branch information
vabene1111 committed Oct 20, 2024
1 parent 2ed53f8 commit 6a12ca7
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion vue3/src/components/display/ShoppingListView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,19 @@
</v-container>
</v-window-item>
<v-window-item value="recipes">
{{ $t('Recipes') }}
<v-card>
<v-card-title>{{ $t('Recipes') }}</v-card-title>
<v-card-text>

<v-label >{{$t('Add_to_Shopping')}}</v-label>
<ModelSelect model="Recipe"></ModelSelect>

<v-label>{{$t('Recipes')}}</v-label>
<v-list>

</v-list>
</v-card-text>
</v-card>
</v-window-item>
</v-window>

Expand All @@ -56,6 +68,7 @@ import {ApiApi, Food, IngredientString, ShoppingListEntry, Unit} from "@/openapi
import {ErrorMessageType, useMessageStore} from "@/stores/MessageStore";
import ShoppingLineItem from "@/components/display/ShoppingLineItem.vue";
import {useUserPreferenceStore} from "@/stores/UserPreferenceStore";
import ModelSelect from "@/components/inputs/ModelSelect.vue";
const currentTab = ref("shopping")
Expand Down

0 comments on commit 6a12ca7

Please sign in to comment.