Skip to content

Commit 7638d3c

Browse files
committed
fix: table reactive error, close #4756
1 parent bd0bc08 commit 7638d3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/vc-table/Table.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -509,7 +509,7 @@ export default defineComponent<TableProps<DefaultRecordType>>({
509509
};
510510
useProvideTable(
511511
reactive({
512-
...reactivePick(props, 'prefixCls', 'direction', 'transformCellText'),
512+
...toRefs(reactivePick(props, 'prefixCls', 'direction', 'transformCellText')),
513513
getComponent,
514514
scrollbarSize,
515515
fixedInfoList: computed(() =>

0 commit comments

Comments
 (0)