You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You cannot access properties that you don't know you're going to get, Typescript only knows that in both cases you're going to get total because is the common property between the two types. In order to tell TypeScript which one (the page or offset pagination object) you have in your response you have to "narrow" the type, to give you an example, in my project I do this:
<template>
<divv-if=" articles &&// articles (or data) can be null so I'm checking that first'pageCount'inarticles.meta.pagination&&// here I'm checking for one of the properties of the `MetaResponsePaginationByPage` to tell TS I have that shapearticles.meta.pagination.pageCount>1// now you can access the `MetaResponsePaginationByPage` properties without TS errors (all the child elements can access this shape too)"class="flex justify-end px-3 py-3.5 border-t border-gray-200 dark:border-gray-700"
>
<UPaginationv-model="page"
:page-count="articles.meta.pagination.pageSize"
:total="articles.meta.pagination.total"
/>
</div>
</template>
So im trying to get pagecount on responsed. Here's what i do
const { data: BlogResponses } = await useAsyncData("blog", () => find<IAttributes>("blogs", { populate: "*", sort: "id:desc", pagination: { page: 1, pageSize: 10, withCount: true }, fields: ["title", "description", "slug", "Date", "Is_recomended"], }) )
onMounted(() => { maxPage.value = BlogResponses.value?.meta.pagination.pageCount })
Im getting typescript error that pageCount is not exist. i checked the types on the modules it provide this
What i did wrong? im new to TS .
The text was updated successfully, but these errors were encountered: