mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
24 lines
603 B
Markdown
24 lines
603 B
Markdown
---
|
|
title: 'useRequestEvent'
|
|
description: 'Access the incoming request event with the useRequestEvent composable.'
|
|
links:
|
|
- label: Source
|
|
icon: i-simple-icons-github
|
|
to: https://github.com/nuxt/nuxt/blob/main/packages/nuxt/src/app/composables/ssr.ts
|
|
size: xs
|
|
---
|
|
|
|
Within the [Nuxt context](/docs/guide/going-further/nuxt-app#the-nuxt-context) you can use `useRequestEvent` to access the incoming request.
|
|
|
|
```ts
|
|
// Get underlying request event
|
|
const event = useRequestEvent()
|
|
|
|
// Get the URL
|
|
const url = event?.path
|
|
```
|
|
|
|
::tip
|
|
In the browser, `useRequestEvent` will return `undefined`.
|
|
::
|