101 lines
1.2 KiB
Plaintext
101 lines
1.2 KiB
Plaintext
|
|
p.location-badge.
|
|
exported from <a href='../router'>angular2/router</a>
|
|
defined in <a href="https://github.com/angular/angular/tree/3a0410a/modules/angular2/src/router/router_link.ts#L10-L72">angular2/src/router/router_link.ts (line 10)</a>
|
|
|
|
:markdown
|
|
The RouterLink directive lets you link to specific parts of your app.
|
|
|
|
|
|
Consider the following route configuration:
|
|
|
|
```
|
|
@RouteConfig({
|
|
path: '/user', component: UserCmp, as: 'user'
|
|
});
|
|
class MyComp {}
|
|
```
|
|
|
|
When linking to a route, you can write:
|
|
|
|
```
|
|
<a router-link="user">link to user component</a>
|
|
```
|
|
|
|
.l-main-section
|
|
h2 Members
|
|
.l-sub-section
|
|
h3 constructor
|
|
|
|
|
|
pre.prettyprint
|
|
code.
|
|
constructor(elementRef: ElementRef, _router: Router, _location: Location)
|
|
|
|
:markdown
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.l-sub-section
|
|
h3 route
|
|
|
|
|
|
:markdown
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.l-sub-section
|
|
h3 params
|
|
|
|
|
|
:markdown
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.l-sub-section
|
|
h3 onClick
|
|
|
|
|
|
pre.prettyprint
|
|
code.
|
|
onClick()
|
|
|
|
:markdown
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.l-sub-section
|
|
h3 onAllChangesDone
|
|
|
|
|
|
pre.prettyprint
|
|
code.
|
|
onAllChangesDone()
|
|
|
|
:markdown
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|