@ttkj/avue 2.10.11 → 2.10.13
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +2 -24
- package/lib/avue.js +155 -122
- package/lib/avue.min.js +13 -5
- package/package.json +5 -2
- package/types/README.md +48 -0
- package/types/avue.d.ts +33 -0
- package/types/crud/column.d.ts +383 -0
- package/types/crud/index.d.ts +264 -0
- package/types/crud/option.d.ts +376 -0
- package/types/crud/refs/dialog-form.d.ts +36 -0
- package/types/crud/refs/header-search.d.ts +18 -0
- package/types/form/column.d.ts +300 -0
- package/types/form/index.d.ts +65 -0
- package/types/form/option.d.ts +167 -0
- package/types/global-component/dialog-form.d.ts +57 -0
- package/types/global-component/export.d.ts +23 -0
- package/types/global-component/image-cropper.d.ts +142 -0
- package/types/global-component/image-preview.d.ts +52 -0
- package/types/global-component/watermark.d.ts +37 -0
- package/types/global.d.ts +315 -0
- package/types/index.d.ts +4 -0
package/README.md
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
<p align="center"><a href="https://avuejs.com" target="_blank" rel="noopener noreferrer"><img width="100" src="https://avuejs.com/images/logo-bg.jpg" alt="Avue logo"></a></p>
|
2
2
|
|
3
3
|
## 介绍
|
4
|
-
|
4
|
+
在@smallwei/avue的基础上进行二次开发
|
5
5
|
|
6
6
|
### 浏览器兼容性
|
7
|
-
支持所有符合ES5标准的浏览器(不支持
|
7
|
+
支持所有符合ES5标准的浏览器(不支持IE).
|
8
8
|
|
9
9
|
## 文件
|
10
10
|
|
@@ -12,25 +12,3 @@
|
|
12
12
|
|-------------|----------|
|
13
13
|
| avue.min.js | 生产环境|
|
14
14
|
| avue.js | 开发环境|
|
15
|
-
|
16
|
-
## 文档
|
17
|
-
|
18
|
-
要查看[Live Examples](https://avuejs.com/doc/installation)和文档,请访问[https://avuejs.com](https://avuejs.com).
|
19
|
-
|
20
|
-
## 问答
|
21
|
-
|
22
|
-
有关问题和支持,请使用[issues](https://gitee.com/smallweigit/avue/issues)或加入QQ群606410437.
|
23
|
-
|
24
|
-
## issues
|
25
|
-
|
26
|
-
打开问题之前,请务必提供详细的问题过程和截图,不符合准则的问题将会被拒绝.
|
27
|
-
|
28
|
-
## Changelog
|
29
|
-
|
30
|
-
[发行说明](https://gitee.com/smallweigit/avue/releases)中记录了每个版本的详细更改。
|
31
|
-
|
32
|
-
## License
|
33
|
-
|
34
|
-
[MIT](http://opensource.org/licenses/MIT)
|
35
|
-
|
36
|
-
Copyright (c) 2017-present, Smallwei
|