diff --git a/src/content/docs/zh-cn/core-concepts/astro-components.mdx b/src/content/docs/zh-cn/core-concepts/astro-components.mdx
index 3f3ca288f7617..b19d373777f7e 100644
--- a/src/content/docs/zh-cn/core-concepts/astro-components.mdx
+++ b/src/content/docs/zh-cn/core-concepts/astro-components.mdx
@@ -274,6 +274,59 @@ const { title } = Astro.props
```
+### 传递插槽
+
+插槽可以传递给其他组件。例如,在创建嵌套布局时:
+
+```astro {11,14}
+// src/layouts/BaseLayout.astro
+---
+---
+
+
+
+
+
+
+
+
+
+
+
+
+
+```
+
+```astro {7, 8}
+// src/layouts/HomeLayout.astro
+---
+import BaseLayout from "./BaseLayout.astro";
+---
+
+
+
+
+
+```
+
+:::note
+通过在 `` 标记上使用 `name` 和 `slot` 属性,可以将具名插槽传递给另一个组件。
+:::
+
+现在,传递给 `HomeLayout` 的默认插槽和 `head` 插槽也将会传递给父级的 `BaseLayout` 组件。
+
+```astro
+// src/pages/index.astro
+---
+import HomeLayout from "../layouts/HomeLayout.astro";
+---
+
+
+ Astro
+ Astro
+
+```
+
## HTML 组件
Astro 支持导入和使用 `.html` 文件作为组件,或者将这些文件放在 `src/pages` 子目录下作为页面。如果你正在复用一个没有使用框架的现有网站代码,或者你想确保你的组件没有动态功能,你可能会需要使用 HTML 组件。