标题和文本

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

标题

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

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
        }
      }
    }
  }
})

标题 1

Nuxt UI

# Nuxt UI

标题 2

## What's new in v4?

标题 3

### Enhanced components

标题 4

#### 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.

水平线

使用水平线来在视觉上分隔内容部分。


---