安装vuex依赖包:
npm install vuex --save
导入vuex包
import Vuex from 'vuex'
Vue.use (Vuex)
创建 store 对象
const store = new Vuex.Store({
// state 中存放的就是全局共享的数据
state: { count:0 }
})
vuex实例挂载到vue对象上
new Vue({
store,
render: h => h(App)
}).$mount("#app")