I am trying to change the page title from the router, can this be done?
import {RouteConfig} from \'angular2/router\'; @RouteConfig([ {path: \'/home\', com
import {Title} from "@angular/platform-browser"; @Component({ selector: 'app', templateUrl: './app.component.html', providers : [Title] }) export class AppComponent implements { constructor( private title: Title) { this.title.setTitle('page title changed'); } }