在使用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