方式一:使用@Component的host属性
设置style:
- '[style.color]': "'red'":注意red值双引号里还有一个单引号。
- '[style.background-color]':'backgroundColor':这里是引用了组件里的变量backgroudColor。
这种方式的好处是可以在样式上使用组件的变量。
设置class:
toggleMyClass() {
this.showMyClass = !this.showMyClass;
}
}
this.showMyClass = !this.showMyClass;
}
}