mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
Update use-request-fetch.md
This commit is contained in:
parent
5b4527f20b
commit
d7d45bca3a
@ -28,7 +28,8 @@ The [`useFetch`](/docs/api/composables/use-fetch) composable uses `useRequestFet
|
||||
<script setup lang="ts">
|
||||
// This will forward the user's headers to the `/api/foo` event handler
|
||||
// Result: { cookies: { foo: 'bar' } }
|
||||
const { data: forwarded } = await useAsyncData(() => useRequestFetch()('/api/cookies'))
|
||||
const requestFetch = useRequestFetch()
|
||||
const { data: forwarded } = await useAsyncData(() => requestFetch('/api/cookies'))
|
||||
|
||||
// This will NOT forward anything
|
||||
// Result: { cookies: {} }
|
||||
|
Loading…
Reference in New Issue
Block a user