diff --git a/src/stores/recipe.ts b/src/stores/recipe.ts index 94adaf5..5201431 100644 --- a/src/stores/recipe.ts +++ b/src/stores/recipe.ts @@ -2,7 +2,7 @@ import { acceptHMRUpdate, defineStore } from 'pinia' export const useRecipeStore = defineStore('recipe', () => { const curStuff = ref(new Set()) - const curTools = ref(new Set()) + const curTools = ref(new Set(['一口大锅'])) const selectedStuff = computed(() => Array.from(curStuff.value)) const selectedTools = computed(() => Array.from(curTools.value))