- 基础环境
- node -- 最新稳定版(某些插件对版本的要求)
- nrm2 -- NPM registry manager, fast switch between different registries: npm, cnpm, nj, taobao
- 浏览器
- chrome,插件Vue.js devtools
- 接口管理平台
- rap
- 模拟数据
- mockjs
- mvvm库: vue2
- 包管理工具: npm、yarn
- 构建工具: webpack2
- Js语言相关: ES2015、ES2016
- UI库:Element
- 编译工具: babel
- css预处理器: sass、postcss
- 模块化规范: ES6 Module、CommonJS
- 接口管理平台:rap
- vue
- vue-router
- vue-resource [用axios替代了]
- vuex
- vue-loader
- vue-cli
- vue-devtools
项目开发目录
|...
|- src [项目主要开发模块]
|
|- component[组件]
|- |- foot [底部组件]
|- |- top [头部组件]
|- |- ... [其他组件]
|
|- modules[数据模型]
|- |- js [js文件]
|- |- icon [icon样式]
|- |- scss [公共样式]
|- pages
|- |- index [主页]
|- |- | - index.html
|- |- product [产品]
|- |- | - product.html
|- |- login [登录]
|- |- | - login.html
|- |- ... [其他页面]
|...
- 饿了么:Element
# install dependencies
npm install
# serve with hot reload at localhost:8080
npm run dev
# build for production with minification
npm run build
# build for production and view the bundle analyzer report
npm run build --report