diff --git a/docs/3.api/1.composables/use-fetch.md b/docs/3.api/1.composables/use-fetch.md index bdfdab9af2..f25564539c 100644 --- a/docs/3.api/1.composables/use-fetch.md +++ b/docs/3.api/1.composables/use-fetch.md @@ -10,12 +10,12 @@ It automatically generates a key based on URL and fetch options, provides type h ## Type ```ts [Signature] -function useFetch( +function useFetch( url: string | Request | Ref | () => string | Request, options?: UseFetchOptions -): Promise> +): Promise> -type UseFetchOptions = { +type UseFetchOptions = { key?: string method?: string query?: SearchParams