11 lines
184 B
JavaScript
11 lines
184 B
JavaScript
|
import * as types from './mutation_types';
|
||
|
|
||
|
export default {
|
||
|
[types.CLOSE_DRAWER](state) {
|
||
|
state.open = false;
|
||
|
},
|
||
|
[types.OPEN_DRAWER](state) {
|
||
|
state.open = true;
|
||
|
},
|
||
|
};
|