赞
踩
在使用vue时,node_modules里面的文件,可能会导致 下载的插件的版本不兼容。
解决方案--------------------------------------------------------------------------------------------------------
首先删除文件目录中的node_modules
更改package.json,package-lock.json的插件版本,
进行 npm install 生成 node_modules,
完成后找到 vue.config.js 文件 ,
将transpileDependencies: true 更改为 transpileDependencies: [],
---------------------------------------------------------------------------------------------------------------------------
如果操作完以上步骤 npm run serve报以下错误
--------------------------------------------------------------------------------------------------------------------------
Invalid options in vue.config.js: child "transpileDependencies" fails because ["transpileDependencies" must be an array]
---------------------------------------------------------------------------------------------------------------------------
再次找到vue.config.js 文件,删除 transpileDependencies: [], 问题完美解决
Ps:切记 进行 npm install 生成 node_modules之后 node_modules目录下的 所有文件不要改动
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。