--- interface Heading { depth: number; slug: string; text: string; } interface Props { headings: Heading[]; } const { headings } = Astro.props; // 过滤出 h2 和 h3 标题 const tocItems = headings.filter(h => h.depth >= 2 && h.depth <= 3); --- 目录