docs: update table doubleclick to dbclick #1397

pull/1431/head
tanjinzhou 2019-11-15 12:59:29 +08:00
parent cdcae1b39f
commit b552450d9a
2 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ Same as `customRow` `customHeaderRow` `customCell` `customHeaderCell`. Follow [V
},
on: {
click: (event) => {}, // click row
doubleclick: (event) => {}, // double click row
dbclick: (event) => {}, // double click row
contextmenu: (event) => {} // right button click row
mouseenter: (event) => {} // mouse enter row
mouseleave: (event) => {} // mouse leave row

View File

@ -88,7 +88,7 @@ const columns = [
},
on: { // 事件
click: (event) => {}, // 点击行
doubleclick: (event) => {},
dbclick: (event) => {},
contextmenu: (event) => {},
mouseenter: (event) => {}, // 鼠标移入行
mouseleave: (event) => {}