安装@vue/cli 遇到的问题

问题复述

1
2
3
4
5
npm install -g @vue/cli

->

npm WARN deprecated core-js@2.6.11: core-js@<3 is no longer maintained and not recommended for usage due to the number of issues. Please, upgrade your dependencies to the actual version of core-js@3.

解决办法

根据报错原因的描述,我们升级一下core-js 的版本就可以解决问题了。

1
npm install --save core-js@3

之后重新打开命令行运行安装命令,虽然还会报异常,但是已经可以安装了。

1
npm install -g @vue/cli

后记

貌似这个core-js 警告,没有什么异议,不更新也会安装。🤣🤣