From fe29948febed1981222a6185a9a03ade2aa73af1 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Wed, 6 Sep 2023 10:31:54 +0100 Subject: [PATCH] docs: remove 'caching' section from data fetching --- docs/1.getting-started/6.data-fetching.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/docs/1.getting-started/6.data-fetching.md b/docs/1.getting-started/6.data-fetching.md index 3284c3c225..9611257a28 100644 --- a/docs/1.getting-started/6.data-fetching.md +++ b/docs/1.getting-started/6.data-fetching.md @@ -29,10 +29,6 @@ The [`useFetch`](/docs/api/composables/use-fetch) and [`useAsyncData`](/docs/api Use the [Nuxt DevTools](https://devtools.nuxtjs.org) to inspect this data in the payload tab. :: -### Effective caching - -[`useFetch`](/docs/api/composables/use-fetch) and [`useAsyncData`](/docs/api/composables/use-async-data) both use a key to cache API responses and further reduce API calls. We will detail later how to invalidate this cache. - ### Suspense Nuxt uses Vue’s `` component under the hood to prevent navigation before every async data is available to the view. The data fetching composables can help you leverage this feature and use what suits best on a per-calls basis.