gamebrary/src/pages/Home/AuthHome.vue
Roman b6b92e32d1
Firebase migration (#50)
Firebase migration
2018-10-24 23:33:15 -07:00

23 lines
444 B
Vue
Executable file

<template lang="html">
<div class="auth-home">
<game-board v-if="platform" />
<platforms v-else />
</div>
</template>
<script>
import GameBoard from '@/pages/GameBoard/GameBoard';
import Platforms from '@/pages/Platforms/Platforms';
import { mapState } from 'vuex';
export default {
components: {
GameBoard,
Platforms,
},
computed: {
...mapState(['platform']),
},
};
</script>