mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
603 B
603 B
title | description | links | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
useRequestEvent | Access the incoming request event with the useRequestEvent composable. |
|
Within the Nuxt context you can use useRequestEvent
to access the incoming request.
// Get underlying request event
const event = useRequestEvent()
// Get the URL
const url = event?.path
::tip
In the browser, useRequestEvent
will return undefined
.
::