赞
踩
Node安装包:http://nodejs.cn/download/
新版的nodejs已经集成了npm,所以npm也一并安装好
node -v
npm -v
切换npm镜像源为淘宝npm镜像
使用淘宝定制的 cnpm 命令行工具代替默认的 npm:(需要管理员权限)
npm install -g cnpm --registry=https://registry.npm.taobao.org
这样就可以使用 cnpm 命令来安装模块了:
cnpm install [name]
更多信息可以查阅:https://developer.aliyun.com/mirror/NPM
新版Vue + 脚手架Vue-Cli 4.3 安装
安装新版Vue (直接使用 cli)
npm install vue (可以不用)
cnpm install -g @vue/cli
cnpm install -g @vue/cli-init
使用vue-cli创建项目(测试项目,验证vue环境)
vue create my-project
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。