Vuex学习

mapgetters

mapgetters是利用了对象和数组的展开运算符号…
…mapgetters([‘getterA’,‘getterB’])

getterA:{},
getterB:{},
link.

dispatch和commit

实例方法
this.$store.dispatch(‘add’,载荷或对象)
this.$store.commit(‘add’,载荷或对象)

store中actions

actions:{
addusers(context,payload){
        context.commit('add',载荷或对象)
        },
}

因为context具有和实例相同的属性和方法,可以利用对象解构转为以下

actions:{
addusers({dispatch,state,commit},payload)
{
},
}
上一篇:react报错: dispatch is not a function


下一篇:Redux API