vue项目git clone …并npm install后,执行npm start 报如下错误:
哪个项目npm start时报这个错呢?就是下面这个项目
qingplus设计器
原因
vue和vue-template-compiler版本不匹配,需要将vue改成和vue-template-compiler一样的版本
解决方案
检查package.json文件中vue和vue-template-compiler版本是否一致。![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/10e1e5a02cf745ffa95ec37d4563536a.png
如vue-template-compiler与vue版本不一致,将其卸载之后再重新npm
npm uninstall vue-template-compiler
重新安装
npm install vue-template-compiler@2.6.14
安装成功之后重新启项目
npm start