diff --git a/lib/component/table/table.vue b/lib/component/table/table.vue index 7f76ad6..8315fa9 100644 --- a/lib/component/table/table.vue +++ b/lib/component/table/table.vue @@ -340,6 +340,9 @@ onChange: (selectedRowKeys: never[], selectedRows: never[]) => { tableState.selectedRowKeys = selectedRowKeys; tableState.selectedRows = selectedRows; + if ('radio' === rowSelection.type) { + rowSelection.selectedRowKeys = selectedRowKeys; + } }, }, isFunction(rowSelection) ? rowSelection(tableState) : rowSelection,