其他分享
首页 > 其他分享> > Vuex学习

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)
{
},
}

标签:Vuex,dispatch,学习,add,actions,commit,mapgetters,store
来源: https://blog.csdn.net/qq_43401689/article/details/117172173