vue2-components-plus 1.0.1 → 1.0.3
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 +3 -5
- package/package.json +40 -41
package/README.md
CHANGED
|
@@ -4,23 +4,21 @@
|
|
|
4
4
|
|
|
5
5
|
vue2-components-plus 是一个功能丰富的 Vue 3 企业级组件库,提供动态表单、函数弹出框组件、带搜索条件的表格、权限控制等完整解决方案。
|
|
6
6
|
|
|
7
|
-
**GitHub 源代码**: https://github.com/75535596/vue2-components-plus
|
|
8
|
-
|
|
9
7
|
组件使用示例参考 `dist/ComponentDemo`
|
|
10
8
|
|
|
11
9
|
## 📸 部分组件预览
|
|
12
10
|
|
|
13
11
|
### NsDialog
|
|
14
12
|
|
|
15
|
-

|
|
16
14
|
|
|
17
15
|
### NsForm
|
|
18
16
|
|
|
19
|
-

|
|
20
18
|
|
|
21
19
|
### NsTableContainer
|
|
22
20
|
|
|
23
|
-

|
|
24
22
|
|
|
25
23
|
|
|
26
24
|
## 📊 功能特性总结
|
package/package.json
CHANGED
|
@@ -1,41 +1,40 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "vue2-components-plus",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"private": false,
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/vue2-components-plus.umd.cjs",
|
|
7
|
-
"module": "./dist/vue2-components-plus.es.js",
|
|
8
|
-
"style": "./dist/style.css",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"import": "./dist/vue2-components-plus.es.js",
|
|
12
|
-
"require": "./dist/vue2-components-plus.umd.cjs",
|
|
13
|
-
"default": "./dist/vue2-components-plus.es.js"
|
|
14
|
-
},
|
|
15
|
-
"./style.css": "./dist/style.css"
|
|
16
|
-
},
|
|
17
|
-
"sideEffects": [
|
|
18
|
-
"*.css",
|
|
19
|
-
"./dist/style.css"
|
|
20
|
-
],
|
|
21
|
-
"files": [
|
|
22
|
-
"dist"
|
|
23
|
-
],
|
|
24
|
-
"
|
|
25
|
-
"
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
"element-ui": "^2.15.14",
|
|
31
|
-
"
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "vue2-components-plus",
|
|
3
|
+
"version": "1.0.3",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/vue2-components-plus.umd.cjs",
|
|
7
|
+
"module": "./dist/vue2-components-plus.es.js",
|
|
8
|
+
"style": "./dist/style.css",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"import": "./dist/vue2-components-plus.es.js",
|
|
12
|
+
"require": "./dist/vue2-components-plus.umd.cjs",
|
|
13
|
+
"default": "./dist/vue2-components-plus.es.js"
|
|
14
|
+
},
|
|
15
|
+
"./style.css": "./dist/style.css"
|
|
16
|
+
},
|
|
17
|
+
"sideEffects": [
|
|
18
|
+
"*.css",
|
|
19
|
+
"./dist/style.css"
|
|
20
|
+
],
|
|
21
|
+
"files": [
|
|
22
|
+
"dist"
|
|
23
|
+
],
|
|
24
|
+
"peerDependencies": {
|
|
25
|
+
"element-ui": "^2.15.14",
|
|
26
|
+
"vue": "2.7.16"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@vitejs/plugin-vue2": "^2.3.3",
|
|
30
|
+
"element-ui": "^2.15.14",
|
|
31
|
+
"vite": "^4.5.14",
|
|
32
|
+
"vue": "2.7.16",
|
|
33
|
+
"vue-template-compiler": "2.7.16"
|
|
34
|
+
},
|
|
35
|
+
"scripts": {
|
|
36
|
+
"dev": "vite",
|
|
37
|
+
"build": "vite build",
|
|
38
|
+
"preview": "vite preview"
|
|
39
|
+
}
|
|
40
|
+
}
|