You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/resources/js/Global/store/modules/common/mutations.js

15 lines
396 B

export default {
SET_CURRENT_MODULE(state, module) {
state.current_module = module;
},
SET_CURRENT_MODULE_INFO(state, moduleInfo) {
state.current_module_info = moduleInfo;
},
SET_CURRENT_TIME(state, currentTime) {
state.time_now = currentTime;
},
SET_CATEGORY_NAME(state, category_name) {
state.category_name = category_name;
},
};