vxe-table 3.19.1 → 3.19.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.
- package/README.md +2 -25
- package/es/style.css +1 -1
- package/es/table/module/custom/mixin.js +1 -4
- package/es/table/module/custom/panel.js +3 -0
- package/es/table/module/menu/mixin.js +4 -1
- package/es/table/src/cell.js +4 -4
- package/es/table/src/methods.js +21 -14
- package/es/ui/index.js +1 -1
- package/es/ui/src/log.js +1 -1
- package/lib/index.umd.js +38 -25
- package/lib/index.umd.min.js +1 -1
- package/lib/style.css +1 -1
- package/lib/table/module/custom/mixin.js +1 -4
- package/lib/table/module/custom/mixin.min.js +1 -1
- package/lib/table/module/custom/panel.js +3 -0
- package/lib/table/module/custom/panel.min.js +1 -1
- package/lib/table/module/menu/mixin.js +4 -1
- package/lib/table/module/menu/mixin.min.js +1 -1
- package/lib/table/src/cell.js +5 -4
- package/lib/table/src/cell.min.js +1 -1
- package/lib/table/src/methods.js +23 -14
- package/lib/table/src/methods.min.js +1 -1
- package/lib/ui/index.js +1 -1
- package/lib/ui/index.min.js +1 -1
- package/lib/ui/src/log.js +1 -1
- package/lib/ui/src/log.min.js +1 -1
- package/package.json +1 -1
- package/packages/table/module/custom/mixin.ts +1 -4
- package/packages/table/module/custom/panel.ts +3 -0
- package/packages/table/module/menu/mixin.ts +4 -1
- package/packages/table/src/cell.ts +4 -4
- package/packages/table/src/methods.ts +23 -14
- /package/es/{iconfont.1761181583983.ttf → iconfont.1761269884508.ttf} +0 -0
- /package/es/{iconfont.1761181583983.woff → iconfont.1761269884508.woff} +0 -0
- /package/es/{iconfont.1761181583983.woff2 → iconfont.1761269884508.woff2} +0 -0
- /package/lib/{iconfont.1761181583983.ttf → iconfont.1761269884508.ttf} +0 -0
- /package/lib/{iconfont.1761181583983.woff → iconfont.1761269884508.woff} +0 -0
- /package/lib/{iconfont.1761181583983.woff2 → iconfont.1761269884508.woff2} +0 -0
package/README.md
CHANGED
|
@@ -30,36 +30,13 @@ Get on [unpkg](https://unpkg.com/vxe-table/) and [cdnjs](https://cdn.jsdelivr.ne
|
|
|
30
30
|
|
|
31
31
|
### NPM
|
|
32
32
|
|
|
33
|
-
```shell
|
|
34
|
-
npm install vxe-table@3 vxe-pc-ui@3
|
|
35
|
-
```
|
|
36
|
-
|
|
37
|
-
### 只使用表格
|
|
38
|
-
|
|
39
33
|
```javascript
|
|
40
|
-
import Vue from 'vue'
|
|
41
34
|
// ...
|
|
42
|
-
import
|
|
35
|
+
import VxeUITable from 'vxe-table'
|
|
43
36
|
import 'vxe-table/lib/style.css'
|
|
44
37
|
// ...
|
|
45
38
|
|
|
46
|
-
|
|
47
|
-
```
|
|
48
|
-
|
|
49
|
-
### 使用表格与 UI 库
|
|
50
|
-
|
|
51
|
-
```javascript
|
|
52
|
-
import Vue from 'vue'
|
|
53
|
-
// ...
|
|
54
|
-
import VxeTable from 'vxe-table'
|
|
55
|
-
import 'vxe-table/lib/style.css'
|
|
56
|
-
|
|
57
|
-
import VxeUI from 'vxe-pc-ui'
|
|
58
|
-
import 'vxe-pc-ui/lib/style.css'
|
|
59
|
-
// ...
|
|
60
|
-
|
|
61
|
-
Vue.use(VxeUI)
|
|
62
|
-
Vue.use(VxeTable)
|
|
39
|
+
createApp(App).use(VxeUITable).mount('#app')
|
|
63
40
|
```
|
|
64
41
|
|
|
65
42
|
### CDN
|