javascript Vuex101:行动和调度
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript Vuex101:行动和调度相关的知识,希望对你有一定的参考价值。
const store = new Vuex.Store({
state: {
count: 0
},
mutations: {
increment (state) {
state.count++
}
},
actions: {
increment (store, photo) {
store.commit('increment', photo)
}
}
})
// dispatch with a payload
store.dispatch('incrementAsync', {
amount: 10
})
// dispatch with an object
store.dispatch({
type: 'incrementAsync',
amount: 10
})
以上是关于javascript Vuex101:行动和调度的主要内容,如果未能解决你的问题,请参考以下文章
javascript Vuex:突变与行动
javascript Vuex101:吸气剂
javascript Vuex101:突变
无法在组件中调度 Vuex 模块的操作
尝试从 vuejs 组件调度操作时,vuex 未知操作类型
尝试从 Vuex 模块调度操作不起作用。 [vuex] 未知动作类型