- 配置参考 Configuration
- 入门指南
- 介绍 Introduction
- 安装 Installation
- 配置 Configuration
- 视图 Views
- 资产 Assets
- 路由 Routing
- SEO and Meta
- 过渡 Transitions
- 数据获取 Data Fetching
- 状态管理 State Management
- 错误处理 Error handling
- 层结构 Layers
- 部署 Deployment
- 测试 Testing
- 升级指南 Upgrade Guide
- 核心概念
- 自动导入 Auto imports
- Vue.Js Vue.js Development
- 渲染模式 Rendering Modes
- 服务端引擎 Server Engine
- 模块化 Modules
- ES模块 ES Modules
- TypeScript TypeScript
- 目录结构
- 可组合项
- 组件
- 工具库
- fetch
- abortNavigation
- addRouteMiddleware
- clearError
- clearNuxtData
- createError
- defineNuxtComponent
- defineNuxtRouteMiddleware
- definePageMeta
- navigateTo
- onBeforeRouteLeave
- onBeforeRouteUpdate
- onNuxtReady
- prefetchComponents
- preloadComponents
- preloadRouteComponents
- refreshNuxtData
- reloadNuxtApp
- setPageLayout
- setResponseStatus
- showError
- updateAppConfig
- CLI 命令
- 进阶
- 深入探究
- 迁移指南
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
层结构 Layers
Nuxt 提供了一个强大的系统,允许您扩展默认文件、配置等。
Nuxt 3 的核心功能之一是层和扩展支持。 您可以扩展默认的 Nuxt 应用程序以重用组件、实用程序和配置。
层结构几乎与标准 Nuxt 应用程序相同,这使得它们易于编写和维护。
一些用例
- 使用
nuxt.config
和app.config
跨项目共享可重用的配置预设 - 使用
components/
目录创建组件库 - 使用
composables/
和utils/
目录创建实用程序和可组合库 - 创建 Nuxt 主题
- 创建 Nuxt 模块预设
- 跨项目共享标准设置
您可以通过将 extends 属性添加到 nuxt.config.ts
文件来扩展层。
export default defineNuxtConfig({
extends: [
'../base', // 从本地层扩展
'@my-themes/awesome', // 从已安装的 npm 包扩展
'github:my-themes/awesome#v1', // 从 git 存储库扩展
]
})
Learn Vue 制作的快速视频展示了“扩展”的强大功能:
创作层结构
请参阅 层结构作者指南 了解更多信息。
示例
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论