1.cnpm install vuex --save
我在配置的时候由于没有安装,所以出现无法resolve vuex的错误。
2.如果里面涉及到ES6语法,则需安装bable
里面可能会用到module.exports={ … },则需安装bable,推荐文章:安装babel
其中会出现问题,
(1)Cannot find module ‘@babel/core’ babel-loader@8 requires Babel 7.x (the package '@babel/c,
百度一下有博客说原因是:
babel-loader和babel-core版本不对应,
babel-loader 7.x对应babel-core 6.x
所以需要先检查你的版本,在更替正确版本
(2)Error: Cannot find module ‘@babel/core’
解决方法
npm uninstall babel-loader
npm install [email protected]
参考网页:https://blog.csdn.net/jiangyutongyangyi/article/details/95899501
3.store.js中需要引入vuex
import Vuex from 'vuex';
Vue.use(Vuex);
入口文件中:
var sfopenpc = new Vue({
el: '#app',
router,
store,
render: h => h(App),
});