标题和文本

精心设计的标题、段落、文本格式和链接,以获得最佳可读性。

标题

使用标题来组织您的内容,使其更易于阅读。

H1 到 H3 标题会获得锚链接,并在目录中显示,方便导航。

您可以控制锚链接生成(例如,用于 AI 聊天界面)在您的 nuxt.config.ts 文件中
nuxt.config.ts
export default defineNuxtConfig({
  content: {
    renderer: {
      anchorLinks: false
    }
  }
})
您可以控制行为目录生成在您的 nuxt.config.ts 文件中
nuxt.config.ts
export default defineNuxtConfig({
  content: {
    build: {
      markdown: {
        toc: {
          depth: 3
        }
      }
    }
  }
})

一级标题

Nuxt UI

# Nuxt UI

二级标题

## What's new in v4?

三级标题

### Enhanced components

四级标题

#### Getting started

文本格式

使用清晰的段落和一致的文本格式来构建您的内容,以提高可读性。

段落

Nuxt UI 提供了一个全面的 Vue 组件、组合式函数和实用程序的集合,用于构建具有一致设计和增强用户体验的现代、无障碍应用程序。

Nuxt UI provides a comprehensive collection of Vue components, composables and utilities for building modern, accessible applications with consistent design and enhanced user experience.

粗体

粗体文本

**Strong text**

斜体

斜体文本

*Emphasized text*

要创建链接,请将链接文本放在方括号中,然后将 URL 放在括号中。对外部链接和内部链接均有效。

[Nuxt documentation](https://nuxtjs.org.cn)

引用块

使用引用块来突出重要信息或引述。

Nuxt UI 会自动适应您的主题设置,确保您的整个应用程序中的排版风格一致。

> Nuxt UI automatically adapts to your theme settings, ensuring consistent typography across your entire application.

水平分割线

使用水平分割线来在内容部分之间进行视觉分隔。


---