diff --git a/docs/content/2.guide/2.features/5.data-fetching.md b/docs/content/2.guide/2.features/5.data-fetching.md index c92d9fa0e44..20d8a8bec82 100644 --- a/docs/content/2.guide/2.features/5.data-fetching.md +++ b/docs/content/2.guide/2.features/5.data-fetching.md @@ -118,13 +118,13 @@ watch(posts, (newPosts) => { Sometimes throughout the course of your user's page visit, you may need to refresh the data loaded from the API. This can happen if the user chooses to paginate, filter results, search, etc. -You can make use of the `refresh()` method returned from the `useAsyncData()` composable to refresh the data with different query parameters: +You can make use of the `refresh()` method returned from the `useFetch()` composable to refresh the data with different query parameters: ```vue