开场白
开始使用
API
- API: The <client-only> Component
- API: <nuxt-child> 组件
- API: <nuxt-link> 组件
- API: <nuxt> 组件
- API: 构建配置
- API: buildDir 属性
- API: 缓存配置
- API: CSS 配置
- API: dev 属性配置
- API: dir 属性
- API: 环境变量配置
- API: generate 属性配置
- API: globalName 属性
- API: head 属性配置
- API: The hooks Property
- API: ignore 属性
- API: The loading indicator Property
- API: loading 属性配置
- API: The mode Property
- API: modern 属性
- API: modules 属性
- API: modulesDir 属性
- API: performance 属性
- API: plugins 属性配置
- API: The render Property
- API: rootDir 属性配置
- API: router 属性配置
- API: server 属性
- API: serverMiddleware 属性
- API: srcDir 属性配置
- API: transition 属性配置
- API: vue.config 属性
- API: watch 属性
- API: watchers 属性
- API: 上下文对象
- API: asyncData 方法
- API: The Builder Class
- API: The Generator Class
- API: The ModuleContainer Class
- API: The Nuxt Class
- API: The Renderer Class
- API: Nuxt Modules Intro
- API: nuxt.renderAndGetWindow(url, options)
- API: nuxt.renderRoute(route, context)
- API: nuxt.render(req, res)
- API: Nuxt(options)
- API: fetch 方法
- API: head 方法
- API: key 属性
- API: layout 属性
- API: loading 属性
- API: middleware 属性
- API: scrollToTop 属性
- API: transition 属性
- API: validate 方法
- API: The watchQuery Property
配置
- 外部资源
- 预处理器
- JSX
- Postcss 插件
- 如何扩展 Webpack 的配置
- Webpack 插件
- Caching Components
- 如何更改应用的主机和端口配置?
- 如何集成 Google 统计分析服务?
- 如何发起跨域资源请求?
- How to extend Webpack to load audio files?
部署
- 如何使用 Now.sh 进行部署?
- 使用 Surge.sh 部署
- 在 Google App Engine 上部署
- Netlify 部署
- AWS: S3+Cloudfront 部署
- Dokku 部署
- nginx 代理
- 如何部署至 GitHub Pages?
- 部署至 Heroku
其他
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
API: The ModuleContainer Class
- 来源: core/module.js
所有模块都将在ModuleContainer
实例的context
调用。
Tapable plugins
我们可以在某些生命周期事件中注册hooks。
nuxt.moduleContainer.plugin('ready', async (moduleContainer) => {
// Do this after all modules where ready
})
在 modules 的context
中我们可以使用它:
this.plugin('ready', async (moduleContainer) => {
// Do this after all modules where ready
})
插件 | 参数 | 说明 |
---|---|---|
ready | moduleContainer | nuxt.config.js 中的所有模块都已初始化 |
方法
添加Vendor(vendor)
vendor
已经废弃不再使用
添加到options.build.vendor
并应用唯一插件过滤器。
添加到模板中 (template)
- template:
String
orObject
src
options
fileName
在构建到项目buildDir
(.nuxt
)期间使用lodash 模板渲染指定模板。
如果未提供fileName
或template
为string
,则目标文件名默认为[dirName].[fileName].[pathHash].[ext]
。
这个方法将返回 { dist, src, options }
对象.
添加插件 (template)
使用addTemplate
注册插件并将其添加到 plugins[]
选项。
您可以使用template.ssr: false
来禁用包含在SSR中的插件。
添加服务器端渲染中间件 (middleware)
将中间件插入 options.serverMiddleware.
extendBuild (fn)
Allows easily extending webpack build config by chaining options.build.extend function.
extendRoutes (fn)
允许通过链接options.build.extendRoutes函数轻松扩展webpack构建配置。
添加模块 (moduleOpts, requireOnce)
注册模块。moduleOpts
可以是string
或[src, options]
。如果requireOnce
为true
且已解析的模块导出meta
阻止两次注册相同的模块。
requireModule (moduleOpts)
addModule(moduleOpts, true)
Hooks
我们可以在某些生命周期事件中注册钩子。
Hook | Arguments | When |
---|---|---|
modules:before | (moduleContainer, options) | 在创建ModuleContainer类之前调用,对重载方法和选项很有用。 |
modules:done | (moduleContainer) | 加载所有模块时调用。 |
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论