( options: TableOptionsWithReactiveData<TData> )
| 43 | }) |
| 44 | |
| 45 | function getOptionsWithReactiveData<TData extends RowData>( |
| 46 | options: TableOptionsWithReactiveData<TData> |
| 47 | ) { |
| 48 | return mergeProxy(options, { |
| 49 | data: unref(options.data), |
| 50 | }) |
| 51 | } |
| 52 | |
| 53 | export function useVueTable<TData extends RowData>( |
| 54 | initialOptions: TableOptionsWithReactiveData<TData> |
no test coverage detected
searching dependent graphs…