[Angular] Class binding = 클래스 바인딩
결과
▽
결론
<h2 [ngClass]='messageClasses'>voomin kim</h2>
위 html은
아래의 클래스가 적용되었다
public messageClasses ={
'text-success': !this.hasError,
'text-danger': this.hasError,
'text-special': this.isSpecial
};
댓글
댓글 쓰기