“Как проверить *ngif с enums в componenet.html” Ответ

Как проверить *ngif с enums в componenet.html

<span *ngIf="name === importedSomeEnum.someValue">This has some value</span>
Sathyendra

Как проверить *ngif с enums в componenet.html

import { Component } from '@angular/core';
import { SomeEnum } from './global';

@Component({
  selector: 'my-app',
  templateUrl: './app.component.html',
  styleUrls: [ './app.component.css' ]
})
export class AppComponent  {
  name = SomeEnum.someValue;
  importedSomeEnum = SomeEnum;
}
Sathyendra

Ответы похожие на “Как проверить *ngif с enums в componenet.html”

Вопросы похожие на “Как проверить *ngif с enums в componenet.html”

Больше похожих ответов на “Как проверить *ngif с enums в componenet.html” по HTML

Смотреть популярные ответы по языку

Смотреть другие языки программирования