From b7858a55c30ac78a868bb8e9ed08def32c744a92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=91=9B=E4=BA=9A=E8=8A=B3?= Date: Mon, 18 Apr 2022 09:44:28 +0000 Subject: [PATCH] update en/application-dev/quick-start/start-with-ets-low-code.md. Signed-off-by: @ge-yafang --- en/application-dev/quick-start/start-with-ets-low-code.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/en/application-dev/quick-start/start-with-ets-low-code.md b/en/application-dev/quick-start/start-with-ets-low-code.md index 0c3e851c39..93012d0892 100644 --- a/en/application-dev/quick-start/start-with-ets-low-code.md +++ b/en/application-dev/quick-start/start-with-ets-low-code.md @@ -118,7 +118,7 @@ You can implement page redirection through the page router, which finds the targ - In the **index.ets** file: ``` - import router from '@system.router'; + import router from '@ohos.router'; @Entry @Component @@ -131,7 +131,7 @@ You can implement page redirection through the page router, which finds the targ */ onclick() { router.push({ - uri: 'pages/second', // Specify the page to be redirected to. + url: 'pages/second', // Specify the page to be redirected to. }) } @@ -149,7 +149,7 @@ You can implement page redirection through the page router, which finds the targ - In the **second.ets** file: ``` - import router from '@system.router'; + import router from '@ohos.router'; @Entry @Component -- GitLab