mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-10 00:28:22 -05:00
basics of shopping
This commit is contained in:
@@ -1,12 +1,37 @@
|
||||
<template>
|
||||
<h2>Shopping List</h2>
|
||||
|
||||
<v-tabs>
|
||||
<v-tab :value="1"><i class="fas fa-shopping-cart fa-fw"></i></v-tab>
|
||||
<v-tab :value="2">Super</v-tab>
|
||||
<v-tab :value="3">Super</v-tab>
|
||||
</v-tabs>
|
||||
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import {defineComponent} from 'vue'
|
||||
|
||||
export default defineComponent({
|
||||
name: "ShoppingListPage"
|
||||
name: "ShoppingListPage",
|
||||
data(){
|
||||
return {
|
||||
tab: 1,
|
||||
|
||||
//user_id: parseInt(localStorage.getItem('USER_ID')),
|
||||
editing_supermarket_categories: [],
|
||||
editing_supermarket: null,
|
||||
new_supermarket: {entrymode: false, value: undefined, editmode: undefined},
|
||||
new_category: {entrymode: false, value: undefined},
|
||||
autosync_id: undefined,
|
||||
new_item: {amount: 1, unit: undefined, food: undefined, ingredient: undefined},
|
||||
new_recipe: {
|
||||
id: undefined,
|
||||
},
|
||||
|
||||
// shopping_list_store: useShoppingListStore(),
|
||||
// user_preference_store: useUserPreferenceStore(),
|
||||
}
|
||||
}
|
||||
})
|
||||
</script>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user