From ae8bbe0b0420794126634eb83969c9cd9797559f Mon Sep 17 00:00:00 2001 From: Shay Date: Tue, 23 Jan 2024 22:42:05 +0700 Subject: [PATCH] docs: add emphasis to `useAsyncData` explanation (#25392) --- docs/3.api/2.composables/use-async-data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/3.api/2.composables/use-async-data.md b/docs/3.api/2.composables/use-async-data.md index f0fa43ba70..1d8b40e744 100644 --- a/docs/3.api/2.composables/use-async-data.md +++ b/docs/3.api/2.composables/use-async-data.md @@ -11,7 +11,7 @@ links: Within your pages, components, and plugins you can use useAsyncData to get access to data that resolves asynchronously. ::callout -[`useAsyncData`](/docs/api/composables/use-async-data) is a composable meant to be called directly in a setup function, plugin, or route middleware. It returns reactive composables and handles adding responses to the Nuxt payload so they can be passed from server to client without re-fetching the data on client side when the page hydrates. +[`useAsyncData`](/docs/api/composables/use-async-data) is a composable meant to be called directly in a setup function, plugin, or route middleware. It returns reactive composables and handles adding responses to the Nuxt payload so they can be passed from server to client **without re-fetching the data on client side** when the page hydrates. :: ## Usage