We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 836cbb7 commit fb2d72fCopy full SHA for fb2d72f
packages/vue-table/src/index.ts
@@ -13,7 +13,7 @@ import { mergeProxy } from './merge-proxy'
13
14
export * from '@tanstack/table-core'
15
16
-type TableOptionsWithReactiveData<TData extends RowData> = Omit<
+export type TableOptionsWithReactiveData<TData extends RowData> = Omit<
17
TableOptions<TData>,
18
'data'
19
> & {
@@ -52,12 +52,6 @@ export function useVueTable<TData extends RowData>(
52
state: {}, // Dummy state
53
onStateChange: () => {}, // noop
54
renderFallbackValue: null,
55
- mergeOptions(
56
- defaultOptions: TableOptions<TData>,
57
- options: TableOptions<TData>
58
- ) {
59
- return mergeProxy(defaultOptions, options)
60
- },
61
},
62
getOptionsWithReactiveData(initialOptions)
63
)
0 commit comments