Vue项目打包报错:TypeError: Cannot read property ‘parseComponent‘ of undefined

项目上午打包还是OK的,下午打包就不正常了,报标题的错误,也是上网查了资料才知道是因为项目中的vue-template-compiler版本的问题,我看了下package.json中的vue和vue-template-compiler版本确实不一致,解决办法如下:

1.将vue-template-compiler版本修改为:“latest”(最新版本)

2.npm intsall 重新安装依赖再打包(若重新安装还是报错,则删掉所有依赖,再重新安装所有依赖就可以了,我的项目就是这样)

Vue项目打包报错:TypeError: Cannot read property ‘parseComponent‘ of undefined_第1张图片

 

你可能感兴趣的:(vue.js)