angular-cn/public/docs/_examples/attribute-directives/ts/app/highlight.directive.1.ts

13 lines
274 B
TypeScript
Raw Normal View History

// #docregion
import { Directive, ElementRef, Input } from '@angular/core';
@Directive({
selector: '[myHighlight]'
})
export class HighlightDirective {
constructor(el: ElementRef) {
el.nativeElement.style.backgroundColor = 'yellow';
}
}
// #enddocregion