Vue packages version mismatch:
- vue@2.6.14 (D:\工具代码\project\project\node_modules\vue\dist\vue.runtime.common.js)
- vue-template-compiler@2.7.16 (D:\工具代码\project\project\node_modules\vue-template-compiler\package.json)
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 和vue-template-compiler的版本不一致的问题,只需要将vue的版本改成vue-template-compiler的版本就好,npm install vue@2.7.16--save,然后启动项目,如果再不行就删除node_modules重新安装就好了。