diff --git a/pages/index.vue b/pages/index.vue index 4e50ca7..6038b46 100644 --- a/pages/index.vue +++ b/pages/index.vue @@ -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 + ] } } }