Nuxt Nationカンファレンス開催! 11月12日〜13日

useRequestEvent

useRequestEventコンポーザブルを使用して、受信リクエストイベントにアクセスします。

Nuxtコンテキスト内では、useRequestEventを使用して受信リクエストにアクセスできます。

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

// Get the URL
const url = event?.path
ブラウザでは、useRequestEventundefinedを返します。