Begin work on the InGame view
This commit is contained in:
parent
238c112859
commit
299cc99c88
1 changed files with 18 additions and 3 deletions
|
|
@ -1,17 +1,32 @@
|
|||
<template>
|
||||
<div></div>
|
||||
<div id="GameView" class="maximize">
|
||||
<game-board />
|
||||
<player-hand />
|
||||
<team-reminder />
|
||||
<discard-hand />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import DiscardHand from "../components/DiscardHandButton";
|
||||
import TeamReminder from "../components/TeamReminder";
|
||||
import GameBoard from "../components/GameBoard";
|
||||
import PlayerHand from "../components/Hand";
|
||||
|
||||
export default {
|
||||
name: `InGame`,
|
||||
components: {},
|
||||
components: {
|
||||
"team-reminder": TeamReminder,
|
||||
"discard-hand": DiscardHand,
|
||||
"player-hand": PlayerHand,
|
||||
"game-board": GameBoard,
|
||||
},
|
||||
computed: {},
|
||||
methods: {},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
<style scoped>
|
||||
@import "../css/theme.css";
|
||||
@import "../css/style.css";
|
||||
</style>
|
||||
Loading…
Add table
Add a link
Reference in a new issue