vsyswin-ui 0.2.82 → 0.2.83
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/lib/vsyswin-ui.common.js +68477 -73296
- package/lib/vsyswin-ui.common.js.map +1 -1
- package/lib/vsyswin-ui.umd.js +68487 -73306
- package/lib/vsyswin-ui.umd.js.map +1 -1
- package/lib/vsyswin-ui.umd.min.js +319 -319
- package/lib/vsyswin-ui.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/packages/table/src/table.vue +4 -0
package/package.json
CHANGED
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
:expand-row-keys="expandRowKeys"
|
|
21
21
|
@sort-change="handleSortChange"
|
|
22
22
|
@selection-change="handleSelectionChange"
|
|
23
|
+
@select="handleSelect"
|
|
23
24
|
@expand-change="handleExpandChange"
|
|
24
25
|
@header-dragend="handleHeaderDragend"
|
|
25
26
|
>
|
|
@@ -431,6 +432,9 @@ export default {
|
|
|
431
432
|
this.selection = selection;
|
|
432
433
|
this.$emit('selection-change', selection);
|
|
433
434
|
},
|
|
435
|
+
handleSelect (selection, row) {
|
|
436
|
+
this.$emit('select', selection, row);
|
|
437
|
+
},
|
|
434
438
|
// 表格行展开事件
|
|
435
439
|
handleExpandChange (row, value) {
|
|
436
440
|
this.$emit('expand-change', row, value);
|