how to change page title in angular2 router

后端 未结 14 1285
深忆病人
深忆病人 2020-12-04 16:17

I am trying to change the page title from the router, can this be done?

import {RouteConfig} from \'angular2/router\';
@RouteConfig([
  {path: \'/home\', com         


        
14条回答
  •  半阙折子戏
    2020-12-04 17:05

    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');
       }
    }
    

提交回复
热议问题