add more symbols from fontawesome
This commit is contained in:
@@ -5,6 +5,7 @@ export const state = () => ({
|
||||
iterationCount: 0,
|
||||
},
|
||||
gameStarted: false,
|
||||
selectedCategories: [],
|
||||
});
|
||||
|
||||
export const mutations = {
|
||||
@@ -13,7 +14,16 @@ export const mutations = {
|
||||
},
|
||||
SET_GAME_STARTED(state, value) {
|
||||
state.gameStarted = value;
|
||||
}
|
||||
},
|
||||
setSelectedCategories(state, categories) {
|
||||
state.selectedCategories = categories;
|
||||
},
|
||||
resetGame(state) {
|
||||
state.gameSettings.playerCount = 0;
|
||||
state.gameSettings.turnCount = 0;
|
||||
state.gameSettings.iterationCount = 0;
|
||||
state.selectedCategories = [];
|
||||
},
|
||||
};
|
||||
|
||||
export const actions = {
|
||||
|
||||
Reference in New Issue
Block a user