mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 00:23:53 +00:00
docs: fix options
type in custom useFetch recipe (#28389)
This commit is contained in:
parent
cfadca3c66
commit
e52dff0596
@ -79,7 +79,7 @@ import type { UseFetchOptions } from 'nuxt/app'
|
|||||||
|
|
||||||
export function useAPI<T>(
|
export function useAPI<T>(
|
||||||
url: string | (() => string),
|
url: string | (() => string),
|
||||||
options: Omit<UseFetchOptions<T>, 'default'> & { default: () => T | Ref<T> },
|
options?: UseFetchOptions<T>,
|
||||||
) {
|
) {
|
||||||
return useFetch(url, {
|
return useFetch(url, {
|
||||||
...options,
|
...options,
|
||||||
|
Loading…
Reference in New Issue
Block a user