Movatterモバイル変換


[0]ホーム

URL:


Wayback Machine
31 captures
16 Nov 2022 - 21 Sep 2025
AugSEPOct
29
202220232024
success
fail
COLLECTED BY
Collection:Common Crawl
Web crawl data from Common Crawl.
TIMESTAMPS
loading
The Wayback Machine - http://web.archive.org/web/20230929210706/https://nuxt.com/docs/guide/going-further/nuxt-app
🎤 Nuxt Nation is coming - The largest online Nuxt Conference is happening on October 18-19, 2023.Register

NuxtApp

In Nuxt 3, you can access runtime app context within composables, components and plugins. In Nuxt 2, this was referred to asNuxt context.

Accessing NuxtApp

Within composables, plugins and components you can accessnuxtApp withuseNuxtApp:

functionuseMyComposable () {constnuxtApp=useNuxtApp()// access runtime nuxt app instance}

Plugins also receivenuxtApp as the first argument for convenience.Read more about plugins.

👉

useNuxtApp (on the server) only works duringsetup, inside Nuxt plugins orLifecycle Hooks.

Providing Helpers

You can provide helpers to be usable across all composables and application. This usually happens within a Nuxt plugin.

constnuxtApp=useNuxtApp()nuxtApp.provide('hello', (name)=>`Hello${name}!`)console.log(nuxtApp.$hello('name'))// Prints "Hello name!"

In Nuxt 2 plugins, this was referred to asinject function.

👉

It is possible to inject helpers by returning an object with aprovide key. See theplugins documentation for more information.


[8]ページ先頭

©2009-2025 Movatter.jp