debian-mirror-gitlab/app/assets/javascripts/whats_new/store/mutations.js
2021-01-03 14:25:43 +05:30

13 lines
254 B
JavaScript

import * as types from './mutation_types';
export default {
[types.CLOSE_DRAWER](state) {
state.open = false;
},
[types.OPEN_DRAWER](state) {
state.open = true;
},
[types.SET_FEATURES](state, data) {
state.features = data;
},
};