--- description: This wrapper around useFetch triggers navigation immediately. --- # `useLazyFetch` `useLazyFetch` provides a wrapper around `useFetch` that triggers navigation before the handler is resolved by setting the `lazy` option to `true`. ## Description By default, [useFetch](/docs/api/composables/use-fetch) blocks navigation until its async handler is resolved. > `useLazyFetch` has the same signature as `useFetch`. :ReadMore{link="/docs/api/composables/use-fetch"} ## Example ```vue ``` ::alert{type=warning} `useLazyFetch` is a reserved function name transformed by the compiler, so you should not name your own function `useLazyFetch`. :: :ReadMore{link="/docs/getting-started/data-fetching#uselazyfetch"}