下载vue脚手架时,出现Vue packages version mismatch,版本冲突问题

Vue packages version mismatch:

- [email protected] (C:\Users\Administrator\AppData\Local\Yarn\Data\global\node_modules\vue\dist\vue.runtime.common.js)

- [email protected] (C:\Users\Administrator\AppData\Local\Yarn\Data\global\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-template-compiler版本不一致


解决办法 

vue版本降级

1.删除C:\Users\Administrator\AppData\Local\Yarn\Data\global\node_modules\vue的vue文件夹

2.下载[email protected]

npm i  [email protected] -g

3.重新开始项目的下载

vue create demo 

即可完成项目的下载。

你可能感兴趣的:(下载vue脚手架时,出现Vue packages version mismatch,版本冲突问题)