2022-10-06 09:15:30 +00:00
---
title: "refreshNuxtData"
description: refreshNuxtData refetches all data from the server and updates the page.
---
2022-04-06 05:56:08 +00:00
# `refreshNuxtData`
2022-10-06 09:15:30 +00:00
`refreshNuxtData` refetches all data from the server and updates the page.
2022-09-13 12:54:31 +00:00
::ReadMore{link="/getting-started/data-fetching"}
2022-04-06 05:56:08 +00:00
::
```ts
refreshNuxtData(keys?: string | string[])
```
Available options:
2022-04-16 13:53:36 +00:00
* `keys` : Provides an array of keys that are used in `useAsyncData` to refetch. When it's not specified, all `useAsyncData` and `useFetch` will be refetched.