一、main.js和store下index.js的配置

vue2中vuex的使用_系统

二、vuex中值得读取

$store.state.counter

三、方法的调用

this.$store.commit('increment')

要写在mutations下

vue2中vuex的使用_系统_02