安装淘宝镜像cnpm
window+r
cmd(进入命令行工具)
cd到安装nodejs的文件夹中
npm install -g cnpm –registry=https://registry.npm.taobao.org (回车等待安装)
搭建vue环境,安装vue的脚手架工具 官方命令行工具
window+r cmd(进入命令行工具 进入到安装node的文件夹)
安装vue-cli,输入(npm)cnpm install -g vue-cli
创建项目 (必须cd到想安装的文件夹)
vue init webpack +(项目的名称)(回车等待)
Project name 项目名称 (您创建的项目是否叫**)
Project description 项目的描述(可写可不写)
Author (作者是什么选填)
Vue build (回车就行)
Install vue-router(Y/n)(选y回车)
Use ESLint to lint your code?(Y/n) (是否使用代码检查,很麻烦 , 多敲空格少敲空格都会有警示, 建议选n)
Set up unit tests(回车就可以)
Pick a test runner(回车就可以)
Setup e2e tests with Nightwatch (回车就可以)
Should we run `npm install` for you after the project has been created (回车就可以)
后续等待创建项目