dispatch 异步操作 this.$store.dispatch(‘actions的方法’,arg); 调用 actions 里面的方法。
commit 同步操作 this.$store.commit(‘mutations的方法’,arg);调用 mutations 里面的方法。
dispatch 异步操作 this.$store.dispatch(‘actions的方法’,arg); 调用 actions 里面的方法。
commit 同步操作 this.$store.commit(‘mutations的方法’,arg);调用 mutations 里面的方法。