mirror of
https://github.com/nuxt/nuxt.git
synced 2025-01-31 07:40:33 +00:00
docs: ensure correct type for url
in useFetch
(#30531)
This commit is contained in:
parent
b5beffc119
commit
7dba33500b
@ -147,7 +147,7 @@ If you have not fetched data on the server (for example, with `server: false`),
|
|||||||
|
|
||||||
```ts [Signature]
|
```ts [Signature]
|
||||||
function useFetch<DataT, ErrorT>(
|
function useFetch<DataT, ErrorT>(
|
||||||
url: string | Request | Ref<string | Request> | (() => string) | Request,
|
url: string | Request | Ref<string | Request> | (() => string | Request),
|
||||||
options?: UseFetchOptions<DataT>
|
options?: UseFetchOptions<DataT>
|
||||||
): Promise<AsyncData<DataT, ErrorT>>
|
): Promise<AsyncData<DataT, ErrorT>>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user