我们在使用vuex actions中传参数,只能传一个参数,穿第二个参数就会自动匹配options字段,那么有什么好的办法传多个参数呢?
//传参页面 class ids{ classId=5; valueId=1; } store.dispatch('update',new ids());
接收参数页面
const store=createStore({ state () { return { Info:{ a:"test", b:"测试", c:"测试vuex内容", } } }, mutations: { change (state,ids) { state.Info={ a: ids.classId, b: ids.valueId, c: "成功了!" } } }, actions:{ update ({commit},ids){ commit("change",ids) } } });