Add games to index page

This commit is contained in:
Sam Carlton 2020-11-20 16:18:31 -06:00
parent 31ecd1cc78
commit 0157e02e0d

View file

@ -27,6 +27,7 @@ import Search from '~/components/search.vue'
import LinkButton from '~/components/link-button.vue'
import appList from '~/app-list.json'
import gameList from '~/game-list.json'
export default {
components: {
@ -35,12 +36,15 @@ export default {
},
data: function () {
return {
query: ''
query: '',
}
},
computed: {
appList() {
return appList
return [
...appList,
...gameList
]
}
}
}