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 {
name: `GameBoard`,
components: {},
data() {return {
data: {
answers: {
team_1: [ ``, ``, ``, ``, ``, ``, ``, `` ],
team_2: [ ``, ``, ``, ``, ``, ``, ``, `` ],
},
}},
},
computed: {
teamID() {
return this.$store.getters.teamName.replace(/\s/g, `-`).toLowerCase();