Recherche…


Introduction

Comment pouvez-vous changer le titre de la page

Syntaxe

  • setTitle(newTitle: string): void;
  • getTitle(): string;

changer le titre de la page

  1. Nous devons d'abord fournir un service de titres.
  2. Utiliser setTitle
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');
   }
}


Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow