/// /// import {Component, bootstrap, View} from 'angular2/angular2'; import {RouteConfig, routerDirectives, routerInjectables} from 'angular2/router'; @Component({ selector: 'my-app' }) @View({ template: '

Hello

', }) class FooCmp { } @Component({ selector: 'my-app' }) @View({ template: '

Hello {{ name }}

', directives: routerDirectives }) @RouteConfig([ {path: '/home', component: FooCmp} ]) class MyAppComponent { name: string; constructor() { this.name = 'Alice'; } } bootstrap(MyAppComponent, routerInjectables);