下载安装node.js
https://nodejs.org/zh-cn/download/
npm安装yarn
安装
npm install -g yarn
切换淘宝镜像
yarn config set registry https://registry.npm.taobao.org
yarn config set registry https://registry.yarnpkg.com
npm config set registry https://registry.npm.taobao.org
npm config set registry https://registry.npmjs.org
yarn 安装 vue/cli 脚手架
yarn global add @vue/cli
npm 安装vue/cli 脚手架(vue)
npm install -g @vue/cli
vue -V查看版本
vue create 创建项目
yarn 命令大全,以及vue/cli安装与卸载
https://blog.csdn.net/jw19950424/article/details/108280351
卸载不了vue脚手架
相信很多人也是在网上按照以下命令卸载脚手架
npm uninstall -g vue-cli
或者 npm uninstall -g @angular/cli
目前我的解决的办法是:
1.先执行npm uninstall vue-cli -g
命令
2.删除.npmrc文件
运行npm config ls -l
可以查看自己文件位置:"builtin" config from C:\Program Files\nodejs\node_modules\npm\npmrc
删除vue原始文件:
3.运行命令:where vue
,找到当前安装位置,找到文件,删掉(这步才是关键)
C:\Users\Administrator>where vue
D:\Nodejs\node_global\vue
D:\Nodejs\node_global\vue.cmd
如果是ng 则删除ng文件
然后输入vue或ng看看是否成功了吧