You are browsing Nuxt 2 docs. Go to Nuxt 3 docs, or learn more about Nuxt 2 Long Term Support.


The Nuxt class

This is the core container which allows all modules and classes communicate with each other. All modules have access to Nuxt instance using this.nuxt.


Hooks

We can register hooks on certain life cycle events.

this.nuxt.hook('ready', async nuxt => {
  // Your custom code here
})
Plugin Arguments When
ready (nuxt) Nuxt is ready to work (ModuleContainer and Renderer ready).
error (error) An unhandled error when calling hooks.
close (nuxt) Nuxt instance is gracefully closing.
listen (server, {host, port}) Nuxt internal server starts listening. (Using nuxt start or nuxt dev).