1安装:
vue ui或cnpm install vuex 2/使用import vuex from 'vuex'vue.use(vuex)
var store = new Vuex.store({
}) var app = new Vue({ store:store})
3/安装vue插件,vue.js devtools,插件github地址:https://github.com/vuejs/vue-devtools
进入网上谷歌应用店搜索vue安装重启浏览器 4使用1、初始化state
2、设置更改state方法,将方法放进mutation里3、触发state更改的方法,store.commit这个方法去触发mutation里的方法