update 优化 toggleRowSelection 缺失一个参数警告问题

This commit is contained in:
疯狂的狮子Li
2023-07-14 22:39:34 +08:00
parent 2b1cbaf8a0
commit e64f4b83c8
3 changed files with 3 additions and 3 deletions

View File

@ -85,7 +85,7 @@ const show = () => {
*/
const clickRow = (row: any) => {
// ele的bug
tableRef.value?.toggleRowSelection(row);
tableRef.value?.toggleRowSelection(row, false);
}
/** 多选框选中数据 */
const handleSelectionChange = (selection: UserVO[]) => {