vue3-layer 1.0.14 → 1.0.17

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 CHANGED
@@ -1,18 +1,24 @@
1
- # Vue3-Layer 弹出层
2
-
3
- [![MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/liicos/vue3-layer)
4
- [![github](https://img.shields.io/badge/Author-legad-blue.svg)](https://github.com/liicos)
5
- [![document](https://img.shields.io/badge/Doc-welcome-red.svg)](http://vue-layer.then66.top)
6
-
7
- vue3-layer 是一款基于 layer.js 上层封装的 vue3 组件,100%支持 layer.js 的 API
8
-
9
- ## 通过 npm 或者 yarn 安装
10
-
11
- ```shell
12
- # npm
13
- npm install vue3-layer --save
14
- # yarn
15
- yarn add vue3-layer
16
- ```
17
-
18
- ## [文档 (Document)](http://vue-layer.then66.top)
1
+ # Vue3-Layer 弹出层
2
+
3
+ [![MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/liicos/vue3-layer)
4
+ [![github](https://img.shields.io/badge/Author-legad-blue.svg)](https://github.com/liicos)
5
+ [![document](https://img.shields.io/badge/Doc-welcome-red.svg)](http://vue-layer.then66.top)
6
+
7
+ vue3-layer 是一款基于 layer.js 上层封装的 vue3 组件,100%支持 layer.js 的 API
8
+
9
+ ## 为什么写这个组件
10
+
11
+ 如果你对 layer.js 的 UI 风格足够熟悉,你会发现国内使用 layer.js 的网站非常之多,然而基于 jQuery 的它并不能很好的适配 MVVM 的开发模式,开发这个组件的目的就是为了让大家在 Vue 中也能方便的使用这个多功能弹出层 ~
12
+
13
+ ## 通过 npm 或者 yarn 安装
14
+
15
+ ```shell
16
+ # npm
17
+ npm install vue3-layer --save
18
+ # yarn
19
+ yarn add vue3-layer
20
+ ```
21
+
22
+ ## [示例 (Example)](http://vue-layer.then66.top/guide/start.html)
23
+
24
+ ## [文档 (Document)](http://vue-layer.then66.top)
package/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "vue3-layer",
3
- "version": "1.0.14",
3
+ "version": "1.0.17",
4
4
  "main": "dist/s3Layer.umd.min.js",
5
5
  "author": "legad",
6
6
  "description": "基于 vue3 的Web 通用弹出层组件",
7
7
  "keywords": [
8
8
  "vue-layer",
9
9
  "vue-modal",
10
- "vue-dialog"
10
+ "vue-dialog",
11
+ "vue3-modal",
12
+ "vue3-dialog",
13
+ "vue3-layer"
11
14
  ],
12
15
  "homepage": "https://github.com/liicos/vue3-layer",
13
16
  "scripts": {
@@ -44,5 +47,6 @@
44
47
  "dist",
45
48
  "public",
46
49
  "src"
47
- ]
50
+ ],
51
+ "types": "src/vue3-layer.d.ts"
48
52
  }
@@ -0,0 +1,2 @@
1
+ export const s3Layer: import('vue').DefineComponent<any>
2
+ export const layer:any