From 26376ab54f062245541a89e832f911036cd449e9 Mon Sep 17 00:00:00 2001 From: GuoYuFei Date: Tue, 11 Dec 2018 10:38:01 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=AD=A3=E7=BF=BB=E8=AF=91?= =?UTF-8?q?=E7=9A=84=E4=B8=80=E4=B8=AA=E8=AF=AD=E4=B9=89=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aio/content/guide/router.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/content/guide/router.md b/aio/content/guide/router.md index 897b91cab6..49f67d1fed 100644 --- a/aio/content/guide/router.md +++ b/aio/content/guide/router.md @@ -1921,8 +1921,8 @@ and routing configuration, including `RouterModule.forRoot`, into this routing m Re-export the Angular `RouterModule` by adding it to the module `exports` array. By re-exporting the `RouterModule` here the components declared in `AppModule` will have access to router directives such as `RouterLink` and `RouterOutlet`. -把它添加到该模块的 `exports` 数组中,以再次导出 `RouterModule`。 -通过在 `AppModule` 中导入 `AppRoutingModule` 并再次导出 `RouterModule`,那些声明在 `AppModule` 中的组件就可以访问路由指令了,比如 `RouterLink` 和 `RouterOutlet`。 +把`RouterModule`添加到该模块的 `exports` 数组中,以再次导出它 。 +通过再次导出`RouterModule`,当在 `AppModule` 中导入了 `AppRoutingModule`之后,那些声明在 `AppModule` 中的组件就可以访问路由指令了,比如 `RouterLink` 和 `RouterOutlet`。 After these steps, the file should look like this.