0
0
Fork 0

Change to static data

This commit is contained in:
Oliver-Akins 2020-12-12 16:31:45 -07:00
parent f5c88eedd0
commit ede4e64714

View file

@ -76,12 +76,12 @@
export default { export default {
name: `GameBoard`, name: `GameBoard`,
components: {}, components: {},
data() {return { data: {
answers: { answers: {
team_1: [ ``, ``, ``, ``, ``, ``, ``, `` ], team_1: [ ``, ``, ``, ``, ``, ``, ``, `` ],
team_2: [ ``, ``, ``, ``, ``, ``, ``, `` ], team_2: [ ``, ``, ``, ``, ``, ``, ``, `` ],
}, },
}}, },
computed: { computed: {
teamID() { teamID() {
return this.$store.getters.teamName.replace(/\s/g, `-`).toLowerCase(); return this.$store.getters.teamName.replace(/\s/g, `-`).toLowerCase();