Skip to content

Commit

Permalink
lots of work on shopping store
Browse files Browse the repository at this point in the history
  • Loading branch information
vabene1111 committed Oct 16, 2024
1 parent e8522a4 commit 7fd402a
Show file tree
Hide file tree
Showing 5 changed files with 221 additions and 218 deletions.
1 change: 0 additions & 1 deletion vue3/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"@types/luxon": "^3.4.2",
"@vueform/multiselect": "^2.6.8",
"@vueuse/core": "^10.11.0",
"lodash": "^4.17.21",
"luxon": "^3.4.4",
"mavon-editor": "^3.0.1",
"pinia": "^2.1.7",
Expand Down
3 changes: 1 addition & 2 deletions vue3/src/components/display/ShoppingListView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

<template v-for="category in useShoppingStore().getEntriesByGroup">
<v-list-subheader>{{ category.name }}</v-list-subheader>
{{category.stats}}
<v-divider></v-divider>

<template v-for="item in category.foods">
Expand Down Expand Up @@ -50,8 +51,6 @@ import {useShoppingStore} from "@/stores/ShoppingStore";
const currentTab = ref("shopping")
const shoppingStore = useShoppingStore()
useShoppingStore().refreshFromAPI()
</script>
Expand Down
Loading

0 comments on commit 7fd402a

Please sign in to comment.