Nuxt Nation 大会即将到来。加入我们,时间为 11 月 12 日至 13 日。

useRequestEvent

使用 useRequestEvent 可组合函数访问传入的请求事件。

Nuxt 上下文 中,您可以使用 useRequestEvent 访问传入的请求。

// Get underlying request event
const event = useRequestEvent()

// Get the URL
const url = event?.path
在浏览器中,useRequestEvent 将返回 undefined