目录
当前位置: 首页 > 文档资料 > Nuxt.js 中文文档 >

API: The Nuxt Class

优质
小牛编辑
134浏览
2023-12-01
  • 来源: core/nuxt.js

这是核心容器,允许所有模块和类相互通信。所有模块都可以使用this.nuxt访问Nuxt实例。

Hooks

我们可以在某些生命周期事件中注册hooks。

nuxt.hook('ready', async (nuxt) => {
  // Your custom code here
})
PluginArgumentsWhen
ready(nuxt)Nuxt实例初始化 (ModuleContainerRenderer 已经准备好).
error(error)调用hooks时出现未处理的错误。
close(nuxt)Nuxt实例优雅地关闭。
listen(server, {host, port})Nuxt内部服务器开始监听。 (使用 nuxt startnuxt dev).