Skip to content

Commit f0553eb

Browse files
committedFeb 15, 2025·
fix(Table): proxy props without useForwardProps
#3255 (comment)
1 parent fa92053 commit f0553eb

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed
 

‎src/runtime/components/Table.vue

+2-4
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ export type TableSlots<T> = {
161161

162162
<script setup lang="ts" generic="T extends TableData">
163163
import { computed } from 'vue'
164-
import { Primitive, useForwardProps } from 'reka-ui'
164+
import { Primitive } from 'reka-ui'
165165
import { upperFirst } from 'scule'
166166
import { FlexRender, getCoreRowModel, getFilteredRowModel, getSortedRowModel, getExpandedRowModel, useVueTable } from '@tanstack/vue-table'
167167
import { reactiveOmit } from '@vueuse/core'
@@ -196,10 +196,8 @@ const groupingState = defineModel<GroupingState>('grouping', { default: [] })
196196
const expandedState = defineModel<ExpandedState>('expanded', { default: {} })
197197
const paginationState = defineModel<PaginationState>('pagination', { default: {} })
198198

199-
const tableProps = useForwardProps(reactiveOmit(props, 'as', 'data', 'columns', 'caption', 'sticky', 'loading', 'loadingColor', 'loadingAnimation', 'class', 'ui'))
200-
201199
const tableApi = useVueTable({
202-
...tableProps,
200+
...reactiveOmit(props, 'as', 'data', 'columns', 'caption', 'sticky', 'loading', 'loadingColor', 'loadingAnimation', 'class', 'ui'),
203201
data,
204202
columns: columns.value,
205203
getCoreRowModel: getCoreRowModel(),

0 commit comments

Comments
 (0)
Please sign in to comment.