0
0
Fork 0

Begin work on the InGame view

This commit is contained in:
Oliver-Akins 2020-12-10 15:19:11 -07:00
parent 238c112859
commit 299cc99c88

View file

@ -1,17 +1,32 @@
<template> <template>
<div></div> <div id="GameView" class="maximize">
<game-board />
<player-hand />
<team-reminder />
<discard-hand />
</div>
</template> </template>
<script> <script>
import DiscardHand from "../components/DiscardHandButton";
import TeamReminder from "../components/TeamReminder";
import GameBoard from "../components/GameBoard";
import PlayerHand from "../components/Hand";
export default { export default {
name: `InGame`, name: `InGame`,
components: {}, components: {
"team-reminder": TeamReminder,
"discard-hand": DiscardHand,
"player-hand": PlayerHand,
"game-board": GameBoard,
},
computed: {}, computed: {},
methods: {}, methods: {},
} }
</script> </script>
<style> <style scoped>
@import "../css/theme.css"; @import "../css/theme.css";
@import "../css/style.css"; @import "../css/style.css";
</style> </style>