八步曲
1.安装nodejs
2.安装webpack
npm install webpack -g
3.安装vue-cli
npm install vue-cli -g
4.新建一个项目目录
mark 目录
5.cd 新建目录执行
vue init webpack-simple
会有一些初始化的设置,如下输入: Target directory exists. Continue? (Y/n)直接回车默认(然后会下载 vue2.0模板,这里可能需要连代理) Project name (vue-test)直接回车默认 Project description (A Vue.js project) 直接回车默认 Author 写你自己的名字
6.安装依赖
npm install
7.安装路由模块vue-router和网络请求模块vue-resource
npm install vue-router vue-resource --save
8.启动项目
npm run dev
超简单有没有!!!