vue3-smart-table 0.0.1 → 0.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 +403 -42
- package/dist/vue3-smart-table.cjs.js +12 -2
- package/dist/vue3-smart-table.css +1 -1
- package/dist/vue3-smart-table.es.js +296 -241
- package/package.json +3 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vue3-smart-table",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "基于 Vue 3 + Element Plus 的高可复用表格组件",
|
|
5
5
|
"main": "dist/vue3-smart-table.cjs.js",
|
|
6
6
|
"module": "dist/vue3-smart-table.es.js",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"author": "xiechen",
|
|
18
18
|
"license": "MIT",
|
|
19
19
|
"scripts": {
|
|
20
|
-
"build": "vue-tsc --
|
|
20
|
+
"build": "vue-tsc --declaration --emitDeclarationOnly && vite build",
|
|
21
21
|
"dev:demo": "cd demo && vite",
|
|
22
22
|
"preview:demo": "vite preview demo"
|
|
23
23
|
},
|
|
@@ -35,7 +35,5 @@
|
|
|
35
35
|
"vue": "^3.5.25",
|
|
36
36
|
"vue-tsc": "^3.1.8"
|
|
37
37
|
},
|
|
38
|
-
"dependencies": {
|
|
39
|
-
"vue-router": "^4.6.4"
|
|
40
|
-
}
|
|
38
|
+
"dependencies": {}
|
|
41
39
|
}
|