From 0224e786696381f14ce7e437868eac253c6b571c Mon Sep 17 00:00:00 2001 From: YunYouJun Date: Sun, 30 Jul 2023 05:21:21 +0800 Subject: [PATCH] feat: add search button toggle --- components/RecipePanel.vue | 9 ++++++++- components/SearchFoodInput.vue | 6 ++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/components/RecipePanel.vue b/components/RecipePanel.vue index 2c4cc39..7433f31 100644 --- a/components/RecipePanel.vue +++ b/components/RecipePanel.vue @@ -4,6 +4,8 @@ import { storeToRefs } from 'pinia' const rStore = useRecipeStore() const { displayedRecipe, selectedStuff, curTool } = storeToRefs(rStore) + +const showSearchInput = ref(false)