docs: update link to devtools.nuxt.com (#23350)

This commit is contained in:
Arash 2023-09-22 10:17:25 +03:00 committed by GitHub
parent f842da5b90
commit ff8a040055
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ When using a framework like Nuxt that can perform calls and render pages on both
The [`useFetch`](/docs/api/composables/use-fetch) and [`useAsyncData`](/docs/api/composables/use-async-data) composables ensure that once an API call is made on the server, the data is properly forwarded to the client in the payload. This JavaScript object is accessible through [`useNuxtApp().payload`](/docs/api/composables/use-nuxt-app#payload) and is used on the client to avoid refetching the same data when the code is executed in the browser.
::alert{icon=⚙️}
Use the [Nuxt DevTools](https://devtools.nuxtjs.org) to inspect this data in the payload tab.
Use the [Nuxt DevTools](https://devtools.nuxt.com) to inspect this data in the payload tab.
::
### Suspense