使用vuex报错“__WEBPACK_IMPORTED_MODULE_1_vuex__.a.store is not a constructor”

Posted yandeli

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用vuex报错“__WEBPACK_IMPORTED_MODULE_1_vuex__.a.store is not a constructor”相关的知识,希望对你有一定的参考价值。

import Vue from ‘vue‘;
import Vuex from ‘vuex‘;

Vue.use(Vuex);

const store = new Vuex.store({
    state:{
        num:"我是vuex1"
    }
});
export default store;

控制台显示报错

Uncaught TypeError: __WEBPACK_IMPORTED_MODULE_1_vuex__.a.store is not a constructor

(是因为尝试将不是构造器的对象或者变量来作为构造器使用。)

 

解决办法:

将new Vuex.store中的“store”大写

new vuex.Store

 

参考:

http://www.cnblogs.com/yufann/p/Vue-Node10.html

 

以上是关于使用vuex报错“__WEBPACK_IMPORTED_MODULE_1_vuex__.a.store is not a constructor”的主要内容,如果未能解决你的问题,请参考以下文章

使用Vuex 报错 unknown action type:XXX

使用Vuex, IE浏览器报错

vuex2中使用mapMutations/mapActions报错解决方法 BabelLoaderError: SyntaxError: Unexpected token

关于 vuex 报错 Do not mutate vuex store state outside mutation handlers.

VUEX报错 [vuex] Do not mutate vuex store state outside mutation handlers

vuex 报错 hook.flushStoreModules is not a function 偶发性