PT PC端
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.

17 lines
395 B

import { createStore } from 'vuex';
import device from './device';
import statistics from './statistics';
4 years ago
import user from './user';
export default createStore({
modules: { user, device, statistics },
4 years ago
state: { menu: { show: true, collapse: false } },
getters: {},
4 years ago
mutations: {
toggleCollapse(state) {
state.menu.collapse = !state.menu.collapse;
},
},
actions: {},
});