关于store
来源:2-4 项目目录介绍及图标字体、公共样式等资源准备
qq_谁都以为热情永远不减_0
2019-11-18
如果 注册store实例 写的是 store: {xxStore:xxx}
mapAction 里面应该怎么写
直接 …mapActions({xxx:xxx}) apply 不对
写回答
2回答
-
qq_谁都以为热情永远不减_0
提问者
2019-11-18
new Vue({
el: "#app",
router,
components: { App },
store: {
imServerStore: imServerStore
},
template: "<App/>"
})
...mapActions({
'setSortCurrentChatEnlistFun': 'setSortCurrentChatEnlistFun'
}),
这样用this.xxx 就是apply不对的❌012019-11-18 -
ustbhuangyi
2019-11-18
没懂你的 store: {xxStore:xxx} 是什么意思,state? 那么又和 action 有什么关系呢,建议你先仔细看一遍 vuex 的文档喔。
00
相似问题