解决 卸载vue-template-compiler npm uninstall vue-template-compiler 1. 重新安装vue-template-compiler npm uninstall vue-template-compiler@2.6.12 1. 一定要与vue版本一致
第一步:执行npm uninstall vue-template-compiler 第二步:执行npm install vue-template-compiler@报错中提示的vue的版本号 本次执行npm install vue-template-compiler@2.6.14
第一种办法: 更新vue-template-compiler到与vue同版本 把vue-template-compiler卸载(cnpm uninstall vue-template-compiler), 再重新安装一个与vue版本一致的vue-template-compiler(cnpm install vue-template-compiler@报错中提示的vue-template-compiler的版本号,这里是2.6.10 ) 但是我发现这个办法并行不通,还是报相同...
首先查看项目根目录下是否生成过package-lock.json的文件,若有,删之。然后删除整个node_modules目录,重新配置package.json(当然,要记得统一vue和vue-template-compiler的版本)配置好之后重新执行:npminstall;OK,问题解决。element饿了么的vue框架,运行报错已解决,Vue2.1.5将_h重命名为_c,而Elemen...
报错原因:通常出现于一些依赖库的更新或者安装新的依赖库之后(可以认为npm update已经成为一种习惯),导致了vue和vue-template-compiler的版本不一致。 解决方案:统一vue和vue-template-compiler的版本 "vue": "2.3.3", "vue-template-compiler": "2.4.4", ...
Module build failed: Error: Cannot find module 'vue-template-compiler' 报错原因:通常出现于一些依赖库的更新或者安装新的依赖库之后(可以认为npm update已经成为一种习惯),导致了vue和vue-template-compiler的版本不一致。 解决方案:统一vue和vue-template-compiler的版本 ...
npm i vue-template-compiler@当前的版本号 --save重新安装,呵,安装倒是成功了,可是版本显示压根没改,还是不一致 !成,我再换一种方式 将package.json里的这两个版本强行给你改一致了,删掉node_modules重新下,还是不行 接连换了好几种方式,都是版本改不掉(如果你们采取了上面的方法直接解决了那更好,要是解决...
Module build failed: Error: Cannot find module 'vue-template-compiler' 1. 2. 报错原因:通常出现于一些依赖库的更新或者安装新的依赖库之后(可以认为npm update已经成为一种习惯),导致了vue和vue-template-compiler的版本不一致。 解决方案:统一vue和vue-template-compiler的版本 ...
1Module build failed: Error: Cannot find module 'vue-template-compiler' 报错原因:通常出现于一些依赖库的更新或者安装新的依赖库之后(可以认为npm update已经成为一种习惯),导致了vue和vue-template-compiler的版本不一致。 解决方案:统一vue和vue-template-compiler的版本 ...
vue项目,package.json中Vue和vue-template-compiler版本不一致时,执行npm run dev有时会报错,提示vue和vue-template-compiler版本不匹配的问题,解决方法 第一步:执行npm uninstall vue-template-compiler 第二步:执行npm install vue-template-compiler@报错中提示的vue的版本号...