diff --git a/packages/nuxt/src/app/composables/asyncData.ts b/packages/nuxt/src/app/composables/asyncData.ts index b97bcd00ab..79a7813ba9 100644 --- a/packages/nuxt/src/app/composables/asyncData.ts +++ b/packages/nuxt/src/app/composables/asyncData.ts @@ -63,11 +63,13 @@ export interface AsyncDataOptions< */ getCachedData?: (key: string) => DataT /** - * A function that can be used to alter handler function result after resolving + * A function that can be used to alter handler function result after resolving. + * Do not use it along with the `pick` option. */ transform?: _Transform /** - * Only pick specified keys in this array from the handler function result + * Only pick specified keys in this array from the handler function result. + * Do not use it along with the `transform` option. */ pick?: PickKeys /**