lots of work on shopping store

This commit is contained in:
vabene1111
2024-10-16 20:58:56 +02:00
parent e8522a4a6d
commit 7fd402aade
5 changed files with 229 additions and 226 deletions

View File

@@ -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">
@@ -50,8 +51,6 @@ import {useShoppingStore} from "@/stores/ShoppingStore";
const currentTab = ref("shopping")
const shoppingStore = useShoppingStore()
useShoppingStore().refreshFromAPI()
</script>