An open API service indexing awesome lists of open source software.

https://github.com/onface/weapp-email


https://github.com/onface/weapp-email

Last synced: 12 days ago
JSON representation

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 // 项目说明以及开发建立说明
```