import { Injectable } from '@angular/core'; import { BehaviorSubject } from 'rxjs/BehaviorSubject'; @Injectable() export class SharedServiceService { // title = new Subject(); title = new BehaviorSubject('default'); title$ = this.title.asObservable(); constructor() { } changedTitle(newTitle: string) { this.title.next(newTitle); } }