Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hemin1003/vue-apps
使用vue.js+nodejs开发的微信端实例项目实战,配合vue-router和webpack等,正式环境已运营地址(微信中打开):http://ktz.aylsonclub.com/home
https://github.com/hemin1003/vue-apps
nodejs vuejs webpack wechat wechat-app
Last synced: about 2 months ago
JSON representation
使用vue.js+nodejs开发的微信端实例项目实战,配合vue-router和webpack等,正式环境已运营地址(微信中打开):http://ktz.aylsonclub.com/home
- Host: GitHub
- URL: https://github.com/hemin1003/vue-apps
- Owner: hemin1003
- Created: 2017-02-27T08:08:22.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-03-23T05:56:48.000Z (almost 8 years ago)
- Last Synced: 2024-08-04T08:02:29.058Z (5 months ago)
- Topics: nodejs, vuejs, webpack, wechat, wechat-app
- Language: Vue
- Homepage:
- Size: 10.4 MB
- Stars: 19
- Watchers: 4
- Forks: 18
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
#vue-apps 使用说明#
# 安装(建议先配置一个淘宝npm下载镜像地址:https://npm.taobao.org/
npm install# 调试环境 serve with hot reload at http://localhost:8083
npm run dev# 生产环境 build for production with minification
npm run build#目录结构
|---build/ 自动化构建脚本
|---dist/ 默认发布根目录
index.html 访问地址http://localhost
|---static/ 资源目录
|---common.js
|---common.css
|---default.js
|---default.css
|---other.js
|---other.css
|---other/ 访问地址http://localhost/other
|---index.html
|---src/ 应用源码
|---assets/ 资源目录
|---imgs/ 公共图片
|---font/ 字体图标
|---config.js 公共配置(name , logo...)
|---global.less 公共样式(reset...)
|---lib.js 各种框架(vue, vue-router, vux, jquery, fastclick...)
|---components 公共组件
|---index-other.vue
|---apps 单页面应用目录
|---default
|---main.js 当前应用入口
|---config.js 当前应用配置
|---app.vue
!---page/
|---page1.vue 路由页面组件
|---page2.vue
|---vuex/ 应用状态管理
|---store.js
|---mutation-type.js
|---mutations.js
|---actions.js
|---getters.js
|---other
|---同index
|---template.html 生成html模板#参考
https://github.com/bluefox1688/vue-cli-multi-page