Add homebrew and games to home quick buttons

This commit is contained in:
Sam Carlton 2020-12-02 13:19:45 -06:00
parent e726787396
commit 25da94e9b4

View file

@ -10,6 +10,7 @@
<Search <Search
:app-list="allList" :app-list="allList"
:quick-buttons="quickButtons"
:initial-limit="200" :initial-limit="200"
@update:query="query = $event" @update:query="query = $event"
/> />
@ -68,6 +69,48 @@ export default {
data: function () { data: function () {
return { return {
query: '', query: '',
quickButtons: [
{
label: '✅ Full Native Support',
query: 'status:native'
},
{
label: '✳️ Rosetta',
query: 'status:rosetta'
},
{
label: '🚫 Unsupported',
query: 'status:no'
},
{
label: '🎮 Games',
query: 'Games'
},
{
label: '🍺 Homebrew Formulae',
query: 'Homebrew'
},
{
label: 'Music Tools',
query: 'Music'
},
{
label: 'Developer Tools',
query: 'Developer'
},
{
label: 'Photo Tools',
query: 'Photo'
},
{
label: 'Video Tools',
query: 'Video'
},
{
label: 'Productivity Tools',
query: 'Productivity'
},
]
} }
} }
} }