Angular2 如何给模板元素动态添加样式?比如点击某元素添加一个.active 样式
Angular2 如何给模板元素动态添加样式
更多参考:https://angular.cn/docs/ts/latest/guide/template-syntax.html#!#ngClass
注意下面[class]的用法:
[class.active]="hero === selectedHero"
<li [class.active]='true'> ... </li>
Angular2 如何给模板元素动态添加样式
更多参考:https://angular.cn/docs/ts/latest/guide/template-syntax.html#!#ngClass
注意下面[class]的用法:
[class.active]="hero === selectedHero"
<li [class.active]='true'> ... </li>