Skip to main content
useNuxtApp is a built-in composable that provides a way to access shared runtime context of Nuxt, also known as the Nuxt context, which is available on both client and server side (but not within Nitro routes). It helps you access the Vue app instance, runtime hooks, runtime config variables and internal states, such as ssrContext and payload.

Usage

[app/app.vue]
If runtime context is unavailable in your scope, useNuxtApp will throw an exception when called. You can use tryUseNuxtApp instead for composables that do not require nuxtApp, or to simply check if context is available or not without an exception.

Methods

provide(name, value)

nuxtApp is a runtime context that you can extend using Nuxt plugins. Use the provide function to create Nuxt plugins to make values and helper methods available in your Nuxt application across all composables and components.
string
required
The name of the value to provide. Will be accessible as $name on the nuxtApp context.
any
required
The value or helper function to make available.

hook(name, cb)

Hooks available in nuxtApp allows you to customize the runtime aspects of your Nuxt application. You can use runtime hooks in Vue.js composables and Nuxt plugins to hook into the rendering lifecycle.
string
required
The name of the hook to listen to. See Runtime Hooks for available hooks.
Function
required
The callback function to execute when the hook is triggered.
[app/plugins/test.ts]

callHook(name, …args)

callHook returns a promise when called with any of the existing hooks.
string
required
The name of the hook to call.
any[]
Arguments to pass to the hook handlers.
Promise<void>
A promise that resolves when all hook handlers have completed.

Properties

vueApp

vueApp is the global Vue.js application instance that you can access through nuxtApp.
App
The Vue application instance with methods like component(), directive(), and use().
Some useful methods:
  • component() - Registers a global component if passing both a name string and a component definition, or retrieves an already registered one if only the name is passed.
  • directive() - Registers a global custom directive if passing both a name string and a directive definition, or retrieves an already registered one if only the name is passed.
  • use() - Installs a Vue.js Plugin.

ssrContext

ssrContext is generated during server-side rendering and it is only available on the server side.
object
The server-side rendering context, available only on the server.
string
Current request url.
H3Event
Access the request & response of the current route.
object
NuxtApp payload object.

payload

payload exposes data and state variables from server side to client side.
object
Data passed from server to client during SSR.
boolean
Indicates if response is server-side-rendered.
object
Cached data from useFetch or useAsyncData calls.
object
State data from useState composable.

isHydrating

Use nuxtApp.isHydrating to check if the Nuxt app is hydrating on the client side.
boolean
Whether the Nuxt app is currently hydrating on the client side.
[app/components/nuxt-error-boundary.ts]

runWithContext(fn)

The runWithContext method is meant to be used to call a function and give it an explicit Nuxt context.
() => T
required
Any function that requires the context of the current Nuxt application.
T
Returns whatever is returned by the provided function.
[app/middleware/auth.ts]

tryUseNuxtApp

This function works exactly the same as useNuxtApp, but returns null if context is unavailable instead of throwing an exception.
NuxtApp | null
The NuxtApp instance if context is available, otherwise null.
Example usage:
[composable.ts]

Type