2015-12-07 11:58:04 -05:00
|
|
|
// #docregion
|
2016-03-25 19:03:53 -04:00
|
|
|
import 'package:angular2/core.dart';
|
2016-01-27 18:51:50 -05:00
|
|
|
|
|
|
|
import 'highlight_directive.dart';
|
2015-12-07 11:58:04 -05:00
|
|
|
|
|
|
|
@Component(
|
|
|
|
selector: 'my-app',
|
|
|
|
templateUrl: 'app_component.html',
|
2016-05-06 10:42:01 -04:00
|
|
|
directives: const [HighlightDirective])
|
2015-12-07 11:58:04 -05:00
|
|
|
class AppComponent {
|
|
|
|
String color;
|
|
|
|
}
|