From 2cda0de5e717157fee768fa891ee2ee9c8593b2e Mon Sep 17 00:00:00 2001 From: "Carlos M. Trinidad" Date: Tue, 29 Nov 2016 18:13:10 -0600 Subject: [PATCH] Update actions.js --- examples/counter-hot/store/actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) }