diff --git a/src/content/docs/zh-cn/guides/view-transitions.mdx b/src/content/docs/zh-cn/guides/view-transitions.mdx
index b0dbde03ce8c4..cdd94deb8f136 100644
--- a/src/content/docs/zh-cn/guides/view-transitions.mdx
+++ b/src/content/docs/zh-cn/guides/view-transitions.mdx
@@ -3,6 +3,7 @@ title: 视图过渡动画
description: 在 Astro 中通过视图过渡动画实现页面之间的无缝导航。
i18nReady: true
---
+import ReadMore from '~/components/ReadMore.astro'
import Since from '~/components/Since.astro'
import { Steps } from '@astrojs/starlight/components'
@@ -317,7 +318,7 @@ const customTransition = {
### 触发导航
-你还可以使用 `navigate` 方法在通常不被 `` 路由器监听的事件里触发客户端导航。该函数来自于 `astro:transitions/client` 模块,可以在任何客户端脚本和通过[客户端指令](/zh-cn/reference/directives-reference/#客户端指令)激活了的客户端组件中使用。
+你还可以使用 [`navigate()`](/zh-cn/reference/modules/astro-transitions/#navigate) 方法在通常不被 `` 路由器监听的事件里触发客户端导航。该函数来自于 `astro:transitions/client` 模块,可以在任何客户端脚本和通过[客户端指令](/zh-cn/reference/directives-reference/#客户端指令)激活了的客户端组件中使用。
下面的示例展示了一个当访客选择菜单中的选项时导航到另一个页面的 Astro 组件:
@@ -387,27 +388,17 @@ import { ClientRouter } from "astro:transitions";