项目作者: microacup

项目描述 :
Vue2 & Webpack2 &Element-UI 多页面模板
高级语言: JavaScript
项目地址: git://github.com/microacup/vue-multi-page.git
创建时间: 2017-04-25T09:09:26Z
项目社区:https://github.com/microacup/vue-multi-page

开源协议:

下载


Vue-multi-page

Vue2.x & Webpack2.x 多页面工程

简介

基于Vue2.x 和Webpack2.x创建的示例工程,整合了常用的基础组件,避免每次都重复组合,拿来即用。

主要特性

  1. 1. 支持Vue2.x, Webpack2.x
  2. 2. 提取公共模块vue.js,对系统公用模块进行抽象
  3. 3. 支持scss,无缝切换到lesscss
  4. 4. 多页面可使用vue-router路由
  5. 5. 使用`axios`
  6. 6. 加入eslint, airbnb级,自动修正错误

Build Setup

国内推荐使用cnpm代理npm

  1. git clone https://github.com/microacup/vue-multi-page
  2. # 安装依赖
  3. cd vue-multi-page & npm install
  4. # 调试环境
  5. npm run dev
  6. # 打包
  7. npm run build:dll # 编译公共部分
  8. npm run build
  9. # 模拟生产环境
  10. npm start
  11. # 锁定版本
  12. npm shrinkwrap

目录结构

  1. webpack
  2. ├──build # build folder
  3. ├──src # main folder
  4. └──assets # 公用模块
  5. ├──scss # scss
  6. ├──images # images
  7. └──js # javascript
  8. ├──vue.js # 封装了公用模块,可以作为公用模块的入口
  9. ├──config.js # 项目的配置
  10. ├──utils.js # 通用工具类
  11. └──filters.js # vue全局过滤器
  12. ├──components # 组件
  13. └──Hello.vue # 示例组件
  14. ├──views # 页面
  15. ├──web # 模块
  16. └──index # 页面
  17. ├──index.html
  18. ├──index.js
  19. └──indexApp.vue
  20. └──embed
  21. ├──live
  22. ├──live.html
  23. ├──live.js
  24. └──liveApp.vue
  25. └──chat
  26. ├──chat.html
  27. ├──chat.js
  28. └──chatApp.vue
  29. ├──store # store
  30. ├──modules # 模块store
  31. ├──index.js # store.js
  32. └──types.js
  33. ├──dist # 编译文件目录
  34. ├──static # .gitkeep
  35. ├──test # test
  36. ├──.gitignore
  37. ├──.babelrc # babel config
  38. ├──.eslintignore # eslint ignore
  39. ├──.eslintrc.js # eslint config
  40. ├──package.json
  41. └──README.md

views目录结构: views/module/page/page.html编辑之后为:http://localhost:7071/module/page.html,

每个页面包含至少三个文件:page.html, page.js, pageApp.vue;为方便管理代码,会将基础文件放入page文件夹中隔离,编译会将page文件夹路径省略,使用module/page.html作为入口。

注:入口对index模块做了单独处理,省略了index模块路径,即:views/index/page/index.html编译后为: http://localhost:7071/index.html

Vue.js预处理

在assets/js/vue.js中,对Vue对象进行了预处理,加入了常用的插件和系统插件。

store中为全局store,使用方式参考web目录,推荐使用动态注册方式为每个目录注册,形成总-分结构。

  1. import store from '../../../store';
  2. // 动态注册store模块
  3. store.registerModule('web', web);
  4. new Vue({ ...App, store }).$mount('#app');

推荐

  • 代码格式使用默认规则
  • 模块使用Vue-router + Vuex模式

相关工程

https://github.com/jiananle/vue-multi-page

https://github.com/jarvan4dev/vue-multi-page

https://github.com/luchanan/vue2.0-multi-page

https://github.com/bluefox1688/vue-cli-multi-page/

https://github.com/jawil/webpack2

https://github.com/Plortinus/vue-multiple-pages