knowyt/client/src/store/players.js
2021-08-26 12:23:32 +02:00

14 lines
206 B
JavaScript

export const state = () => ({
players: [],
})
export const mutations = {
setPlayers(state, game) {
if (game) {
state.players = game.players
} else {
state.players = []
}
},
}