We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 67066e2 commit 7a64fe5Copy full SHA for 7a64fe5
components/table/Table.tsx
@@ -491,7 +491,7 @@ const InteralTable = defineComponent<
491
watch(
492
() => props.rowSelection,
493
() => {
494
- rowSelection.value = { ...props.rowSelection };
+ rowSelection.value = props.rowSelection ? { ...props.rowSelection } : props.rowSelection;
495
},
496
{ deep: true, immediate: true },
497
);
0 commit comments