This repository has been archived by the owner on Sep 14, 2021. It is now read-only.
forked from 894848652/air-weapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.md
83 lines (61 loc) · 2.13 KB
/
README.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<p align="center">
<img width="150" src="./asserts/images/air.jpg" />
</p>
<p align="center">简单,实用的小程序 UI 库</p>
# Air Weapp
[![Build Status](https://travis-ci.org/AlanZou007/air-weapp.svg?branch=master)](https://travis-ci.org/AlanZou007/air-weapp)
## 概述
[air-weapp](https://github.com/AlanZou007/air-weapp) 小程序UI库,简单, 实用。
:zap: 现已支持npm支持下载!请放心食用~
组件现已包含actionsheet, badge, button, cell, cell-group, icon, loading, loadmore, panel, popup, rate, stepper, switch, timer, top-tips, upload, qrcode.
## 下载
```bash
npm install air-weapp --production
```
## 预览
![AirUI-WeApp](./asserts/images/code.jpg)
1. 在 air-weapp 根目录下运行
``` bash
# 安装项目依赖
npm install
# 执行组件编译
npm run dev
```
2. 打开[微信web开发者工具](https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/download.html),'本地小程序项目 - 添加项目',把 air-weapp/example 目录添加进去就可以预览示例demo了。
## 使用
把项目根目录下的dist目录,复制到项目中。
1. 正常组件
如按钮组件,只需要在页面中引入按钮自定义组件即可。
```json
{
"usingComponents": {
"air-button": "air-weapp/btn"
}
}
```
```html
<!-- example/btn/index.html -->
<air-button>按钮</air-button>
```
2. API类组件
如 Top-Tips 组件,需要先在页面上引入自定义组件。之后在逻辑运行时,直接调用方法即可展示
```json
{
"usingComponents": {
"air-top-tips": "air-weapp/top-tips"
}
}
```
```html
<air-top-tips id="tips" />
```
```js
const { tips } = require('air-weapp/base/index');
tips({
content: '这是一条普通提醒'
});
````
## 开源协议
本项目基于 [MIT](https://zh.wikipedia.org/wiki/MIT%E8%A8%B1%E5%8F%AF%E8%AD%89)协议,请自由地享受和参与开源。
## 贡献
如果你有好的意见或建议,欢迎给我们提 [issue] 或 [PR],为优化 [Air-Weapp] 贡献力量