docs(router): `alias` should be `as`

This commit is contained in:
Matias Niemelä 2015-06-15 00:46:17 -07:00
parent ac3e624d0f
commit 3154cea0bf
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ import {Location} from './location';
* ```
* @RouteConfig({
* path: '/user', component: UserCmp, alias: 'user'
* path: '/user', component: UserCmp, as: 'user'
* });
* class MyComp {}
* ```