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>
|
<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>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue