fix: 修正翻译的一个语义错误

This commit is contained in:
GuoYuFei 2018-12-11 10:38:01 +08:00 committed by 雪狼
parent 7c9c67f3ac
commit 26376ab54f
1 changed files with 2 additions and 2 deletions

View File

@ -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.