美文网首页
初学Vuex记录---- 在vue-cli3.0+中使用vuex

初学Vuex记录---- 在vue-cli3.0+中使用vuex

作者: 有你才精彩XX | 来源:发表于2018-11-12 15:41 被阅读0次

    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调用

    相关文章

      网友评论

          本文标题:初学Vuex记录---- 在vue-cli3.0+中使用vuex

          本文链接:https://www.haomeiwen.com/subject/ikdcfqtx.html