Skip to content
This repository was archived by the owner on Aug 12, 2019. It is now read-only.

Commit 6d92ac8

Browse files
author
Javier Diaz
committed
fix: fixed property from score to points
1 parent 087e611 commit 6d92ac8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/store.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default new Vuex.Store({
3232
SET_PLAYER: (state, { name }) => {
3333
const player = {
3434
name,
35-
score: 0,
35+
points: 0,
3636
};
3737
state.players.push(player);
3838
},

0 commit comments

Comments
 (0)