forked from MisterTaki/vue-table-with-tree-grid
-
Notifications
You must be signed in to change notification settings - Fork 44
Home
HaiLong Yang edited this page Apr 8, 2019
·
2 revisions
row-click和row-dblclick 不起作用 该怎么解决呢
row-click无响应,可以修改源码tree-table-vue.js 第1375行: if (certainType.row && others.clickRow) { 为 if (certainType.row && certainType.radio && others.clickRow) {
原因就是他触发了radio-click事件,没有去触发row-click事件,其实这里radio是为false的。
但是同时发现row-dblclick始终会触发2次row-click,还没有想到解决方法