diff --git a/web/src/components/GameBoard.vue b/web/src/components/GameBoard.vue index d87310b..426562e 100644 --- a/web/src/components/GameBoard.vue +++ b/web/src/components/GameBoard.vue @@ -76,12 +76,12 @@ export default { name: `GameBoard`, components: {}, - data() {return { + data: { answers: { team_1: [ ``, ``, ``, ``, ``, ``, ``, `` ], team_2: [ ``, ``, ``, ``, ``, ``, ``, `` ], }, - }}, + }, computed: { teamID() { return this.$store.getters.teamName.replace(/\s/g, `-`).toLowerCase();