美文网首页
vuex报错__WEBPACK_IMPORTED_MODULE_

vuex报错__WEBPACK_IMPORTED_MODULE_

作者: saintkl | 来源:发表于2018-10-29 13:42 被阅读0次

在使用vuex过程中,发现报错

typeError:__WEBPACK_IMPORTED_MODULE_1_vuex__.a.store is not a constructor

经查找发现是实例化时 .store用的小写造成的,如下

 new Vuex.store({
  state:{},
  mutations:{},
  actions:{},
  modules:{}
})

实际应为大写!(居然有和我一样粗心的)

new Vuex.Store({
  state:{},
  mutations:{},
  actions:{},
  modules:{}
})

参考vue踩坑--TypeError: WEBPACK_IMPORTED_MODULE_1_vuex.a.store is not a constructor

相关文章

网友评论

      本文标题:vuex报错__WEBPACK_IMPORTED_MODULE_

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