安装vuex依赖包
npm install vuex --save
导入vuex包
import Vuex from 'vuex
Vuex.use(Vuex)
创建store对象
const store = new Vuex.Store({
//state 中存放的是全局共享的数据
state : { count:0}
})
将store对象挂载到vue实例中
new Vue({
el:'#app',
render:h => h(app),
router,
//将创建的共享数据对象,挂载到vue实例中
//所有的组件,就可以直接从store中获取全局的数据了
store
})