node.js官方下载地址
npm install -g vue-cli
记得切换目录,在当前目录下创建
vue init webpack ['项目名']
选装:
? Project name vue-project -->项目名称
? Project description vue项目 -->项目说明
? Author FrankFang -->作者
? Vue build standalone -->标准安装
? Install vue-router? -->是否安装路由(建议安装)
? Use ESLint to lint your code? -->格式控制(不建议安装)
? Set up unit tests -->建议安装
? Setup e2e tests with Nightwatch? -->建议安装
? Should we run `npm install` for you after the project has been created? (recommended) npm
创建完成后
cd '项目名'
npm install -->安装依赖
npm run dev -->运行
建议下载HBuilder打开创建完成后的项目用来开发