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 0c3e851c3912b2f768dceb2622c461ab919d946a..93012d0892f4022edfc5a2d7248b20bdb7cde32b 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