feat: add tools select

This commit is contained in:
YunYouJun
2022-04-14 23:56:45 +08:00
parent 56ad10ef07
commit ca86612bdc
8 changed files with 115 additions and 6 deletions

View File

@@ -15,6 +15,10 @@ export interface StuffItem {
* 别名,譬如:西红柿/番茄
*/
alias?: string
/**
* 图标名称
*/
icon?: string
}
/**
@@ -148,3 +152,26 @@ export const staple: StuffItem[] = [
emoji: '🍜',
},
]
export const tools: StuffItem[] = [
{
name: '烤箱',
emoji: '',
icon: 'i-mdi-toaster-oven',
},
{
name: '空气炸锅',
emoji: '',
icon: 'i-fe-frying-pan',
},
{
name: '微波炉',
emoji: '',
icon: 'i-ic-outline-microwave',
},
{
name: '电饭煲',
emoji: '',
icon: 'i-gg-smart-home-cooker',
},
]