From 3257034b8225ce93762093f9b2ae926cbe213187 Mon Sep 17 00:00:00 2001 From: Oliver-Akins Date: Tue, 8 Dec 2020 18:09:00 -0700 Subject: [PATCH] Add the moon counts to the data store --- web/src/store/index.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/web/src/store/index.js b/web/src/store/index.js index 8c02ce8..76d4b9e 100644 --- a/web/src/store/index.js +++ b/web/src/store/index.js @@ -11,9 +11,21 @@ export default new Vuex.Store({ id: null, team_1: { name: `Sun`, + moons: { + 1: 0, 2: 0, + 3: 0, 4: 0, + 5: 0, 6: 0, + 7: 0, 8: 0, + }, }, team_2: { name: `Moon`, + moons: { + 1: 0, 2: 0, + 3: 0, 4: 0, + 5: 0, 6: 0, + 7: 0, 8: 0, + }, }, writer_name: `Spirit`, guesser_name: `Medium`,