diff --git a/en/application-dev/quick-start/start-with-js-low-code.md b/en/application-dev/quick-start/start-with-js-low-code.md index b46990dc8ee7b7e8a08da0745d5b62e90bf3fe59..e98d6aa349c420fb991a148322d136beb9bd6cba 100644 --- a/en/application-dev/quick-start/start-with-js-low-code.md +++ b/en/application-dev/quick-start/start-with-js-low-code.md @@ -104,12 +104,12 @@ You can implement page redirection through the [page router](../ui/ui-js-buildin - In the **index.js** file: ``` - import router from '@system.router'; + import router from '@ohos.router'; export default { onclick() { router.push({ - uri:'pages/second/second', // Specify the page to be redirected to. + url:'pages/second/second', // Specify the page to be redirected to. }) } } @@ -127,7 +127,7 @@ You can implement page redirection through the [page router](../ui/ui-js-buildin - In the **second.js** file: ``` - import router from '@system.router'; + import router from '@ohos.router'; export default { back() {