Created
June 27, 2016 05:51
-
-
Save tkssharma/b0c20c032d4f0289ab2849441e77f552 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@Component({ | |
selector: 'basic-routing', | |
template: `<a [routerLink]="['/Home']">Home</a> | |
<a [routerLink]="['/ProductDetail']">Product Details</a> | |
<router-outlet></router-outlet>`, | |
directives: [ ROUTER_DIRECTIVES] | |
}) | |
@RouteConfig([ | |
{path: '/', component: HomeComponent, as: 'Home'}, | |
{path: '/product', component: ProductDetailComponent, as: 'ProductDetail'} | |
]) | |
class RootComponent{ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment