lyfO_o
2022-05-06 4b4622c9f74150ca60eb7c4f038e55fb98be02d7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const changeData = {
    state:{
        classifyOne:'',
    },
    mutations: {
        SET_ONE : (state , name) =>{
            state.classifyOne = name
        }
    },
    actions:{
        getClassifyOne({ commit }, listQuery){
            commit('SET_ONE', listQuery)
        }
    }
}
 
export default changeData