mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
BREAKING CHANGE:
This is a rename to make routing concepts easier to understand.
Before:
```
@RouteConfig([
{ path: '/', component: MyCmp, as: 'Home' }
])
```
After:
```
@RouteConfig([
{ path: '/', component: MyCmp, name: 'Home' }
])
```
Closes #4622
Closes #4896
|
||
|---|---|---|
| .. | ||
| animate | ||
| core | ||
| http | ||
| mock | ||
| router | ||
| symbol_inspector | ||
| testing | ||
| tools | ||
| web_workers | ||
| platform.dart | ||
| platform.ts | ||
| public_api_spec.ts | ||