feat: revert strict mode

This commit is contained in:
YunYouJun
2022-04-17 17:11:59 +08:00
parent 0865dbe716
commit 3ae07a1073
3 changed files with 8 additions and 5 deletions

View File

@@ -1,7 +1,7 @@
import { acceptHMRUpdate, defineStore } from 'pinia'
export const useRecipeStore = defineStore('recipe', () => {
const strict = ref(true)
const strict = ref(false)
const curStuff = ref(new Set<string>())
const curTools = ref(new Set<string>())