“Componente de interruptor angular” Respostas de código

*Ngswitch

<container-element [ngSwitch]="switch_expression">
  <!-- the same view can be shown in more than one case -->
  <some-element *ngSwitchCase="match_expression_1">...</some-element>
  <some-element *ngSwitchCase="match_expression_2">...</some-element>
  <some-other-element *ngSwitchCase="match_expression_3">...</some-other-element>
  <!--default case when there are no matches -->
  <some-element *ngSwitchDefault>...</some-element>
</container-element>
Worried Whale

Componente de interruptor angular

<container-element [ngSwitch]="switch_expression">
  <some-element *ngSwitchCase="match_expression_1">...</some-element>
</container-element>
Juice WRLD

Respostas semelhantes a “Componente de interruptor angular”

Perguntas semelhantes a “Componente de interruptor angular”

Mais respostas relacionadas para “Componente de interruptor angular” em TypeScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código