From 7bac508c9b80bed5f97c050a81314a0b18372ec7 Mon Sep 17 00:00:00 2001 From: king_he <6384784@qq.com> Date: Sat, 18 Jun 2022 11:56:11 +0000 Subject: [PATCH] update en/application-dev/reference/arkui-ts/ts-container-navigator.md. Signed-off-by: king_he <6384784@qq.com> --- .../reference/arkui-ts/ts-container-navigator.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/en/application-dev/reference/arkui-ts/ts-container-navigator.md b/en/application-dev/reference/arkui-ts/ts-container-navigator.md index df3e651383..0d8d7b373a 100644 --- a/en/application-dev/reference/arkui-ts/ts-container-navigator.md +++ b/en/application-dev/reference/arkui-ts/ts-container-navigator.md @@ -1,11 +1,11 @@ # Navigator -> ![icon-note.gif](public_sys-resources/icon-note.gif) **NOTE** +> **NOTE**
> This component is supported since API version 7. Updates will be marked with a superscript to indicate their earliest API version. -The **<Navigator>** component provides redirection. +The **Navigator** component provides redirection to the target page. ## Required Permissions @@ -25,7 +25,7 @@ Navigator(value?: {target: string, type?: NavigationType}) Creates a navigator. - Parameters - | Name | Type | Mandatory | Default Value | Description | + | Name | Type | Mandatory | Default Value | Description | | -------- | -------- | -------- | -------- | -------- | | target | string | Yes | - | Path of the target page to be redirected to. | | type | NavigationType | No | NavigationType.Push | Navigation type. | @@ -40,9 +40,9 @@ Creates a navigator. ## Attributes - | Name | Parameters | Default Value | Description | +| Name | Parameters | Default Value | Description | | -------- | -------- | -------- | -------- | -| active | boolean | - | Whether the **<Navigator>** component is activated. If the component is activated, the corresponding navigation takes effect. | +| active | boolean | - | Whether the **Navigator** component is activated. If the component is activated, the corresponding navigation takes effect. | | params | Object | undefined | Data that needs to be passed to the target page during redirection. You can use **router.getParams()** to obtain the data on the target page. | -- GitLab