How to show a part of a component component based on the route – Html
I'm trying to show a part of my header component just in some routes. Here is my header component: <div id="cabecalho" class="p-2"> <div class="row"> <div class="col mt-2"> <div *ngIf="this.unidadeAtendimento == 8"> <img src="../../../assets/imagens/logo-stl-removebg-preview.png" alt="logo-stl" class="logo-stl mt-1"/> </div> </div> <!-- here…