1、使用config set registry更换镜像源
打开命令提示符
首先查看当前镜像源
npm config get registry
设置淘宝镜像源
npm config set registry https://registry.npm.taobao.org
需要换回时改为官方的镜像源
npm config set registry https://registry.npmjs.org
2、安装cnpm
安装cnpm
npm i -g cnpm --registry=https://registry.npm.taobao.org
使用cnpm安装依赖包
cnpm i -g vue vue-cli
查看镜像源
cnpm config ls