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/modal/mutations.js

18 lines
392 B

export default {
//Modal
SET_RESULT_CURRENT_MODAL(state, result) {
state.result = result;
},
SET_PROPERTIES_CURRENT_MODAL(state, properties) {
state.properties = properties;
},
//Dialog
SET_DIALOG_TYPE(state, type = 'delete') {
state.dialogType = type;
},
SET_DIALOG_PROPERTIES(state, properties = {}) {
state.dialogProperties = properties;
},
};