System.import('app/bootstrap');
import {Component} from 'angular2/angular2';
@Component({
selector: 'my-app',
template: `
{{title}}
`
})
export class AppComponent {
public title = 'Tour of Heroes';
}
import {Component} from 'angular2/angular2';
import {RouteConfig} from 'angular2/router';
import {APP_ROUTES} from './route.config';
@Component({
selector: 'my-app',
template: `
{{title}}
`
})
@RouteConfig(APP_ROUTES)
export class AppComponent {
public title = 'Tour of Heroes';
}
template: `
{{title}}
`
import {Component} from 'angular2/angular2';
@Component({
selector: 'my-dashboard',
template: `
Dashboard Goes Here
`
})
export class DashboardComponent {}
template: `