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