Skip to content

Instantly share code, notes, and snippets.

@tkssharma
Created June 27, 2016 05:51
Show Gist options
  • Save tkssharma/b0c20c032d4f0289ab2849441e77f552 to your computer and use it in GitHub Desktop.
Save tkssharma/b0c20c032d4f0289ab2849441e77f552 to your computer and use it in GitHub Desktop.
@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