Blame view

src/store/modules/getdqhj.js 267 Bytes
xiaomiao committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
const state = {
  dqhj: "",
}

const mutations = {
  SET_DQHJ: (state, data) => {
    state.dqhj = data
  }
}

const actions = {
  setdqjh ({ commit }, data) {
    commit('SET_DQHJ', data)
  }
}

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