angular-docs-cn/public/docs/_examples/attribute-directives/ts/app/app.component.ts

13 lines
257 B
TypeScript

// #docregion
import {Component} from 'angular2/core';
import {Highlight} from './highlight.directive'
@Component({
selector: 'my-app',
templateUrl: 'app/app.component.html',
directives: [Highlight]
})
export class AppComponent { }
// #enddocregion