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
.
- Source: core/nuxt.js
Hooks
We can register hooks on certain life cycle events.
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 ). |
Edit this page on GitHub
Updated at Mon, Jul 12, 2021