Skip to content

Commit e9ebf62

Browse files
committed
修复vue3版table双击事件无效的问题
1 parent b15ca33 commit e9ebf62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Vol.Vue3版本/src/components/basic/VolTable.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ export default defineComponent({
589589
},
590590
rowDbClick(row, column, event) {
591591
//2021.05.23增加双击行事件
592-
this.$emit("row-dbclick", { row, column, event });
592+
this.$emit("rowDbClick", { row, column, event });
593593
},
594594
rowClick(row, column, event) {
595595
//正在编辑时,禁止出发rowClick事件

0 commit comments

Comments
 (0)