项目下载并npm install后,执行npm run dev 报如下错误:
Vue packages version mismatch:
- vue@2.7.14
- vue-template-compiler@2.5.21
This may cause things to work incorrectly. Make sure to use the same version for both.
If you are using vue-loader@>=10.0, simply update vue-template-compiler.
If you are using vue-loader@<10.0 or vueify, re-installing vue-loader/vueify should bump vue-template-compiler to the latest.
原因:版本不匹配,需要将vue改成和vue-template-compiler一样的版本
方法一:改 vue
npm install vue@2.5.21 --save
方法二:改 vue-template-compiler文章来源:https://www.toymoban.com/news/detail-653646.html
先卸载:npm uninstall vue-template-compiler
再安装:npm install vue-template-compiler
再执行npm run dev,就OK了文章来源地址https://www.toymoban.com/news/detail-653646.html
到了这里,关于Vue packages version mismatch If you are using vue-loader@>=10.0, simply update vue-template-compile的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!