From 33107d8b98969a2eb4fe401f770d41769d14b5e7 Mon Sep 17 00:00:00 2001 From: Dave Stewart Date: Mon, 15 Nov 2021 15:50:00 +0000 Subject: [PATCH] docs: remove mention of plugins from data fetching (#1925) --- docs/content/3.docs/1.usage/1.data-fetching.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/3.docs/1.usage/1.data-fetching.md b/docs/content/3.docs/1.usage/1.data-fetching.md index 39ae55d61d..b708712355 100644 --- a/docs/content/3.docs/1.usage/1.data-fetching.md +++ b/docs/content/3.docs/1.usage/1.data-fetching.md @@ -8,7 +8,7 @@ Nuxt provides `useFetch`, `useLazyFetch`, `useAsyncData` and `useLazyAsyncData` ## `useAsyncData` -Within your pages, components and plugins you can use `useAsyncData` to get access to data that resolves asynchronously. +Within your pages and components you can use `useAsyncData` to get access to data that resolves asynchronously. ### Usage @@ -57,7 +57,7 @@ This composable behaves identically to `useAsyncData` with the `lazy: true` opti ## `useFetch` -Within your pages, components and plugins you can use `useFetch` to get universally fetch from any URL. +Within your pages and components you can use `useFetch` to get universally fetch from any URL. This composable provides a convenient wrapper around `useAsyncData` and `$fetch` and automatically generates a key based on url and fetch options and infers API response type.