mirror of
https://github.com/TandoorRecipes/recipes.git
synced 2026-01-11 17:16:59 -05:00
first shopping items showing
This commit is contained in:
@@ -1,38 +1,11 @@
|
||||
<template>
|
||||
|
||||
<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>
|
||||
|
||||
<shopping-list-view></shopping-list-view>
|
||||
</template>
|
||||
|
||||
<script lang="ts">
|
||||
import {defineComponent} from 'vue'
|
||||
<script lang="ts" setup>
|
||||
|
||||
export default defineComponent({
|
||||
name: "ShoppingListPage",
|
||||
data(){
|
||||
return {
|
||||
tab: 1,
|
||||
import ShoppingListView from "@/components/display/ShoppingListView.vue";
|
||||
|
||||
//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>
|
||||
|
||||
<style scoped>
|
||||
|
||||
Reference in New Issue
Block a user