mirror of
https://github.com/romancm/gamebrary
synced 2024-12-30 13:03:08 +00:00
b6b92e32d1
Firebase migration
23 lines
444 B
Vue
Executable file
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>
|