const changeData = { state:{ classifyOne:'', }, mutations: { SET_ONE : (state , name) =>{ state.classifyOne = name } }, actions:{ getClassifyOne({ commit }, listQuery){ commit('SET_ONE', listQuery) } } } export default changeData