import { Component, Input, ChangeDetectionStrategy } from '@angular/core'; @Component({ selector: 'unb-navbar', templateUrl: './navbar.html', changeDetection: ChangeDetectionStrategy.OnPush }) export class NavbarComponent { @Input() brand: string; controlador:boolean=false; overlay:string=""; carregarBars(){ if(this.controlador){ this.controlador =false; this.overlay = "none"; }else{ this.controlador =true; this.overlay = "block"; } } }