From ede4e647142f1752e2bf6c179751bf0b96823a74 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Sat, 12 Dec 2020 16:31:45 -0700 Subject: [PATCH] Change to static data --- web/src/components/GameBoard.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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();