angular-cn/aio/content/examples/attribute-binding/src/app/comp-with-host-binding.component.ts

17 lines
343 B
TypeScript
Raw Normal View History

import { Component, HostBinding } from '@angular/core';
@Component({
selector: 'comp-with-host-binding',
template: 'I am a component!',
})
export class CompWithHostBindingComponent {
@HostBinding('class.special')
isSpecial = false;
@HostBinding('style.color')
color = 'green';
@HostBinding('style.width')
width = '200px';
}