初学Vuex记录---- 在vue-cli3.0+中使用vuex
2018-11-12 本文已影响0人
有你才精彩XX
1.在main.js中引入import Vuexfrom 'vuex'
2.Vue.use(Vuex);
3.
const store=new Vuex.Store({
state:{token:''}
})
4.在new Vue() 全局组件中放入store
5.在该项目中都可以通过this.$store调用
1.在main.js中引入import Vuexfrom 'vuex'
2.Vue.use(Vuex);
3.
const store=new Vuex.Store({
state:{token:''}
})
4.在new Vue() 全局组件中放入store
5.在该项目中都可以通过this.$store调用