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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vsyswin-ui",
3
- "version": "0.2.82",
3
+ "version": "0.2.83",
4
4
  "main": "lib/vsyswin-ui.umd.min.js",
5
5
  "private": false,
6
6
  "description": "Vue2.x的应用组件库.",
@@ -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);