For AI agents: the complete documentation index is available at https://rspress.rs/zh/llms.txt, the full documentation bundle is available at https://rspress.rs/zh/llms-full.txt, and this page is available as Markdown at https://rspress.rs/zh/ui/hooks/use-frontmatter.md.
close
  • 中文
  • useFrontmatter

    useFrontmatter 返回当前页面的 Frontmatter,对读取自定义元信息更友好。

    • 类型: () => { frontmatter: FrontMatterMeta }

    示例:当页面 Frontmatter 标记为 beta 时展示徽标。

    import { useFrontmatter } from '@rspress/core/runtime';
    
    export default function BetaBadge() {
      const { frontmatter } = useFrontmatter();
      return frontmatter.beta ? <span>Beta</span> : null;
    }

    若还需要其他页面元信息(如标题、路由、目录等),可配合 usePage 一起使用。