在Vue2.x中使用this.$store一直报错

78 阅读1分钟

源码:

computed:{
      theme(){

          return this.$store.state.theme;
      }
    }

原因:

Vuex 版本太高的问题,原来是 "vuex": "^4.0.2"

解决方案:

卸载原来的vuex,重新安装低版本的vuex

npm install vuex@3.6.2 --save

解决!!!