mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-22 21:55:11 +00:00
Merge 7c2bb85054
into f94d3f2bc6
This commit is contained in:
commit
9de292befd
@ -36,6 +36,10 @@ export default defineNuxtComponent({
|
|||||||
</script>
|
</script>
|
||||||
```
|
```
|
||||||
|
|
||||||
|
::warning
|
||||||
|
Data from `useAsyncData` is only set once in the `setup` hook of your component. This means `refreshNuxtData` will not work with `asyncData`. If you need to re-run `useAsyncData`, you can change it with a `method` of the Options API.
|
||||||
|
::
|
||||||
|
|
||||||
## `head()`
|
## `head()`
|
||||||
|
|
||||||
If you choose not to use `setup()` in your app, you can use the `head()` method within your component definition:
|
If you choose not to use `setup()` in your app, you can use the `head()` method within your component definition:
|
||||||
|
@ -12,6 +12,10 @@ links:
|
|||||||
`refreshNuxtData` re-fetches all data from the server and updates the page as well as invalidates the cache of [`useAsyncData`](/docs/api/composables/use-async-data) , `useLazyAsyncData`, [`useFetch`](/docs/api/composables/use-fetch) and `useLazyFetch`.
|
`refreshNuxtData` re-fetches all data from the server and updates the page as well as invalidates the cache of [`useAsyncData`](/docs/api/composables/use-async-data) , `useLazyAsyncData`, [`useFetch`](/docs/api/composables/use-fetch) and `useLazyFetch`.
|
||||||
::
|
::
|
||||||
|
|
||||||
|
::warning
|
||||||
|
`refreshNuxtData` only works with Composition API. `asyncData` hook from the Options API does not work with `refreshNuxtData`.
|
||||||
|
::
|
||||||
|
|
||||||
## Type
|
## Type
|
||||||
|
|
||||||
```ts
|
```ts
|
||||||
|
Loading…
Reference in New Issue
Block a user