0
0
Fork 0

Adjust ordering of attributes and include a do not edit below comment.

This commit is contained in:
Oliver-Akins 2020-12-10 10:37:50 -07:00
parent f840944691
commit 8f27b6b932

View file

@ -5,12 +5,9 @@ Vue.use(Vuex)
export default new Vuex.Store({ export default new Vuex.Store({
state: { state: {
view: `lobby`,
role: null,
name: ``,
id: null,
team_1: { team_1: {
name: `Sun`, name: `Sun`,
icon: ``,
moons: { moons: {
1: 0, 2: 0, 1: 0, 2: 0,
3: 0, 4: 0, 3: 0, 4: 0,
@ -20,6 +17,7 @@ export default new Vuex.Store({
}, },
team_2: { team_2: {
name: `Moon`, name: `Moon`,
icon: ``,
moons: { moons: {
1: 0, 2: 0, 1: 0, 2: 0,
3: 0, 4: 0, 3: 0, 4: 0,
@ -29,6 +27,13 @@ export default new Vuex.Store({
}, },
writer_name: `Spirit`, writer_name: `Spirit`,
guesser_name: `Medium`, guesser_name: `Medium`,
//===========================================================================//
// DO NOT EDIT ANYTHING BELOW THIS COMMENT
view: `lobby`,
role: null,
name: ``,
id: null,
}, },
mutations: { mutations: {
}, },