diff --git a/examples/counter-hot/store/actions.js b/examples/counter-hot/store/actions.js index d6da61201..9dbad3df5 100644 --- a/examples/counter-hot/store/actions.js +++ b/examples/counter-hot/store/actions.js @@ -9,6 +9,6 @@ export const incrementIfOdd = ({ commit, state }) => { export const incrementAsync = ({ commit }) => { setTimeout(() => { - commit('decrement') + commit('increment') }, 1000) }