feat: use indexDB instead of array filter

This commit is contained in:
YunYouJun
2023-07-30 18:25:54 +08:00
parent 70787d3a80
commit c2b1ffdd9e
16 changed files with 181 additions and 88 deletions

View File

@@ -36,7 +36,7 @@ export interface RecipeItem {
/**
* 工具
*/
tools?: string[]
tools: string[]
}
export type Recipes = RecipeItem[]