fix(Table): select all rows without select listener (#652)

This commit is contained in:
Sma11X
2023-09-12 21:55:50 +08:00
committed by GitHub
parent 1b34df15ac
commit 83d609d530

View File

@@ -239,7 +239,8 @@ export default defineComponent({
return
}
onSelect(row)
// @ts-ignore
attrs.onSelect ? attrs.onSelect(row) : selected.value.push(row)
})
}