gwell-dialog 0.1.0 → 0.1.2

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.
@@ -0,0 +1,11 @@
1
+ ###
2
+ # @Author: lengyihan
3
+ # @Date: 2023-11-24 17:23:31
4
+ # @LastEditors: lengyihan
5
+ # @LastEditTime: 2023-12-04 15:43:14
6
+ # @Description:
7
+ # @FilePath: \gwell-dialog\.env.development
8
+ ###
9
+
10
+ NODE_ENV = development
11
+ # 接口
@@ -0,0 +1,11 @@
1
+ ###
2
+ # @Author: wangqian
3
+ # @Date: 2022-09-06 17:56:03
4
+ # @LastEditTime: 2023-12-04 15:43:18
5
+ # @LastEditors: lengyihan
6
+ # @Description:
7
+ # @FilePath: \gwell-dialog\.env.production
8
+ ###
9
+
10
+ NODE_ENV = production
11
+ # 接口
package/README.md CHANGED
@@ -1,24 +1,91 @@
1
- # gwell-dialog
2
-
3
- ## Project setup
4
- ```
5
- yarn install
6
- ```
7
-
8
- ### Compiles and hot-reloads for development
9
- ```
10
- yarn serve
11
- ```
12
-
13
- ### Compiles and minifies for production
14
- ```
15
- yarn build
16
- ```
17
-
18
- ### Lints and fixes files
19
- ```
20
- yarn lint
21
- ```
22
-
23
- ### Customize configuration
24
- See [Configuration Reference](https://cli.vuejs.org/config/).
1
+ <!--
2
+ * @Author: lengyihan
3
+ * @Date: 2023-11-17 18:05:01
4
+ * @LastEditors: lengyihan
5
+ * @LastEditTime: 2023-12-04 16:40:14
6
+ * @Description:
7
+ * @FilePath: \gwell-dialog\README.md
8
+ -->
9
+
10
+ # gwell-dialog
11
+
12
+ ## Project setup
13
+
14
+ ```
15
+ yarn install
16
+ ```
17
+
18
+ ### Compiles and hot-reloads for development
19
+
20
+ ```
21
+ yarn serve
22
+ ```
23
+
24
+ ### Compiles and minifies for production
25
+
26
+ ```
27
+ yarn build
28
+ ```
29
+
30
+ ### Lints and fixes files
31
+
32
+ ```
33
+ yarn lint
34
+ ```
35
+
36
+ ### Customize configuration
37
+
38
+ See [Configuration Reference](https://cli.vuejs.org/config/).
39
+
40
+ ### 目录结构
41
+
42
+ ```
43
+ |-- gwell-dialog
44
+ |-- .env.development
45
+ |-- .env.production
46
+ |-- .eslintignore
47
+ |-- .eslintrc.js
48
+ |-- .gitignore
49
+ |-- .npmignore
50
+ |-- .prettierignore
51
+ |-- .prettierrc
52
+ |-- .yarnignore
53
+ |-- babel.config.js
54
+ |-- jsconfig.json
55
+ |-- package-lock.json
56
+ |-- package.json
57
+ |-- postcss.config.js
58
+ |-- README.md
59
+ |-- vue.config.js
60
+ |-- yarn.lock
61
+ |-- examples
62
+ | |-- App.vue
63
+ | |-- main.js
64
+ | |-- assets
65
+ | | |-- css
66
+ | | | |-- style.scss
67
+ | | |-- images
68
+ | | |-- icon_bottomClose.png
69
+ | | |-- icon_close.png
70
+ | |-- router
71
+ | | |-- index.js
72
+ | |-- views
73
+ | |-- HomeView.vue
74
+ |-- lib
75
+ | |-- demo.html
76
+ | |-- gwell-dialog.common.js
77
+ | |-- gwell-dialog.common.js.map
78
+ | |-- gwell-dialog.css
79
+ | |-- gwell-dialog.umd.js
80
+ | |-- gwell-dialog.umd.js.map
81
+ | |-- gwell-dialog.umd.min.js
82
+ | |-- gwell-dialog.umd.min.js.map
83
+ |-- packages
84
+ | |-- index.js
85
+ | |-- dialog
86
+ | |-- index.js
87
+ | |-- main.vue
88
+ |-- public
89
+ |-- favicon.ico
90
+ |-- index.html
91
+ ```