#Type 'ApiPageData' is missing the following properties from type 'Ref<ApiPageData>': value, [RefSymb

1 messages · Page 1 of 1 (latest)

tawdry holly
#

This is how the child component receives it:

#
interface ComponentProps<T> {
  isLoading: boolean
  tableData: TableMetaData
  parseRow: (data: T) => RowData[]
  rows: T[]
  paginatorApiData: Ref<ApiPageData>
}

const props = defineProps<ComponentProps<unknown>>()