NuxtApp

In Nuxt 3, you can access runtime app context within composables, components and plugins.

In Nuxt 2, this was referred to as Nuxt context.

Accessing NuxtApp

Within composables, plugins and components you can access nuxtApp with useNuxtApp:

  1. function useMyComposable () {
  2. const nuxtApp = useNuxtApp()
  3. // access runtime nuxt app instance
  4. }

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

👉

useNuxtApp (on the server) only works during setup, inside Nuxt plugins or Lifecycle Hooks.

Providing helpers

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

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

In Nuxt 2 plugins, this was referred to as inject function.

👉

It is possible to inject helpers by returning an object with a provide key. See the plugins documentation for more information.