feat: add filter input

This commit is contained in:
YunYouJun
2022-11-06 02:54:20 +08:00
parent 5b60db8224
commit ba59b045c8
14 changed files with 62 additions and 9 deletions

View File

@@ -3,7 +3,7 @@ import { createPinia, setActivePinia } from 'pinia'
import { useRecipe } from '~/composables/recipe'
import type { Recipe } from '~/types'
import recipeData from '~/data/recipe.json'
import { useRecipeStore } from '~/stores/recipe'
import { useRecipeStore } from '~/store/recipe'
const recipe = ref<Recipe>(recipeData as Recipe)