https://github.com/onface/weapp-email
https://github.com/onface/weapp-email
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/onface/weapp-email
- Owner: onface
- Created: 2018-08-12T02:19:04.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-08-27T07:22:38.000Z (over 6 years ago)
- Last Synced: 2025-02-17T09:43:10.380Z (3 months ago)
- Language: JavaScript
- Size: 88.9 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# weapp-email
> A Mpvue project
## Build Setup
``` bash
# 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
```For detailed explanation on how things work, checkout the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader).
## folders
```bash
- build // 将开发代码构建成生产环境可运行代码的编译程序
- config // 开发环境和生产环境的属性变量配置
- dist // 编译后的代码
- node_modules // 依赖包
- server // 配置启动本地服务器
- src // 实际编写的源代码
├ components // 可复用Vue组件
├ m // 功能模块
├ pages // 可视页面
├ app.json // 小程序全局配置
├ App.vue // 根Vue实例
└ main.js // 创建根Vue实例
- test // 用于测试的代码
- package.json // 定义了这个项目所需要的各种模块,以及项目的配置信息
- index.html // 页面入口
- README.md // 项目说明以及开发建立说明
```