@airpower/web 0.0.23 → 0.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +37 -6
- package/dist/airpower.web.js +20178 -26059
- package/dist/components/Table.vue.d.ts +22 -0
- package/dist/components/index.d.ts +2 -0
- package/dist/decorator/Table.d.ts +24 -0
- package/dist/decorator/index.d.ts +3 -0
- package/dist/decorator/interface/ITableFieldConfig.d.ts +21 -0
- package/dist/decorator/interface/index.d.ts +1 -0
- package/dist/decorator/type/TableType.d.ts +3 -0
- package/dist/decorator/type/index.d.ts +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/type/WebType.d.ts +1 -0
- package/dist/type/index.d.ts +1 -0
- package/docs/README.md +3 -0
- package/package.json +8 -6
package/README.md
CHANGED
|
@@ -4,16 +4,47 @@
|
|
|
4
4
|
|
|
5
5
|
<p align="center">
|
|
6
6
|
<img src="https://svg.hamm.cn?key=Lang&value=TypeScript&bg=green"/>
|
|
7
|
-
<img src="https://svg.hamm.cn?key=Base&value=Vue3"/>
|
|
8
7
|
<img src="https://svg.hamm.cn?key=Build&value=Vite"/>
|
|
8
|
+
<img src="https://svg.hamm.cn?key=Base&value=Vue3"/>
|
|
9
|
+
<img src="https://svg.hamm.cn?key=UI&value=Element Plus"/>
|
|
9
10
|
</p>
|
|
10
11
|
|
|
11
12
|
<p align="center">
|
|
12
|
-
<a href="https://github.com/AirPowerTeam/AirPower-
|
|
13
|
-
<a href="https://gitee.com/air-power/AirPower4T">Gitee</a>
|
|
13
|
+
<a href="https://gitee.com/air-power/AirPower-Web">Gitee</a> / <a href="https://github.com/AirPowerTeam/AirPower-Web">Github</a> / <a href="https://www.npmjs.com/package/@airpower/web">NPM</a>
|
|
14
14
|
</p>
|
|
15
15
|
|
|
16
|
+
## 🎉 项目介绍
|
|
16
17
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
**AirPower-Web**, 一个基于 **Vue3** **Element Plus** **TypeScript** 的快速开发脚手架。
|
|
19
|
+
|
|
20
|
+
此项目是基于 **[@airpower-core]()** 的 **Web** 端实现,我们还提供了很多的工具包,例如:
|
|
21
|
+
|
|
22
|
+
- **Vue3+TypeScript+ElementPlus+Vite** 的 **Web开发工具包**,
|
|
23
|
+
请查看 [AirPower4T](https://github.com/AirPowerTeam/AirPower4T)
|
|
24
|
+
- **[@airpower/web](https://www.npmjs.com/package/@airpower/web)** 适用于 **Web** 开发 (开发中,**AirPower4T** 的重构版)
|
|
25
|
+
- **[@airpower/uniapp](https://www.npmjs.com/package/@airpower/uniapp)** 适用于 **UniApp** 开发 (计划中)
|
|
26
|
+
- **[@airpower/electron](https://www.npmjs.com/package/@airpower/electron)** 适用于 **Electron** 开发 (计划中)
|
|
27
|
+
- **[@airpower/wechat](https://www.npmjs.com/package/@airpower/wechat)** 适用于 **微信小程序** 开发 (计划中)
|
|
28
|
+
|
|
29
|
+
## 💻 如何安装
|
|
30
|
+
|
|
31
|
+
```shell
|
|
32
|
+
npm install @airpower/web
|
|
33
|
+
# or
|
|
34
|
+
yarn add @airpower/web
|
|
35
|
+
# or
|
|
36
|
+
cnpm install @airpower/web
|
|
37
|
+
# or ...
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## 📖 参考文档
|
|
41
|
+
|
|
42
|
+
**我们提供了一系列的使用文档,你可以 [点击这里阅读](docs/README.md)**
|
|
43
|
+
|
|
44
|
+
## ⏰ 欢迎反馈
|
|
45
|
+
|
|
46
|
+
如有疑问,可以通过本仓库的 **Issues** 与我们联系,如果你有一些代码贡献,可以通过 **Pull Request** 将代码贡献,为这个项目添砖加瓦。
|
|
47
|
+
|
|
48
|
+
> 高司令:“嗯?Java? 什么Java?”
|
|
49
|
+
|
|
50
|
+
如果有更多的需求和建议,欢迎通过本仓库的 `Issues` 提出,也欢迎加入 QQ群 555156313 与我们及时反馈。
|