Blame view

frontend/mobile/src/store/modules/index.js 332 Bytes
8d73e917   陈威   初始化提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const state = {
  currentLayout: {},
}
const getters = {}

const actions = {
  switchLayout({ commit, state }, data) {
    commit('switchLayout', data)
  },
}

const mutations = {
  switchLayout(state, data) {
    state.currentLayout = data
  },
}

export default {
  namespaced: true,
  state,
  getters,
  actions,
  mutations,
}