diff --git a/packages/nuxt/src/app/composables/fetch.ts b/packages/nuxt/src/app/composables/fetch.ts index 5ac5216698..10e4d27fae 100644 --- a/packages/nuxt/src/app/composables/fetch.ts +++ b/packages/nuxt/src/app/composables/fetch.ts @@ -126,6 +126,7 @@ export function useFetch< immediate, getCachedData, deep, + dedupe, ...fetchOptions } = opts @@ -144,6 +145,7 @@ export function useFetch< immediate, getCachedData, deep, + dedupe, watch: watch === false ? [] : [_fetchOptions, _request, ...(watch || [])] }