Skip to content

Instantly share code, notes, and snippets.

@LancelotSaki
LancelotSaki / app.module.ts
Created October 1, 2018 15:14 — forked from pniel-cohen/app.module.ts
Dynamically set page title based on active route in Angular 4
import ...
@NgModule({
...
providers: [ TitleService ],
})
export class AppModule {
constructor(titleService: TitleService) {
titleService.init();
}