Change to static data
This commit is contained in:
parent
f5c88eedd0
commit
ede4e64714
1 changed files with 2 additions and 2 deletions
|
|
@ -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();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue