import { Component } from '@angular/core'; import {CacheService} from '../cache.service'; @Component({ selector: 'app-main', templateUrl: './main.component.html', styleUrls: ['./main.component.css'] }) export class MainComponent { constructor(private service: CacheService) { } changeTab(tab) { this.service.currentTab = tab.index; } public get greyOut() { return this.service.querySelectionMode; } }