Mainly Dart-side review, following #1654: - Updates to follow style guide - Suites passed: public/docs/_examples/pipes/dart - Suites failed (known issue - #1761): public/docs/_examples/pipes/ts
13 lines
357 B
Dart
13 lines
357 B
Dart
// #docregion
|
|
import 'package:angular2/angular2.dart';
|
|
|
|
@Component(
|
|
selector: 'hero-birthday',
|
|
// #docregion hero-birthday-template
|
|
template: "<p>The hero's birthday is {{ birthday | date }}</p>"
|
|
// #enddocregion hero-birthday-template
|
|
)
|
|
class HeroBirthdayComponent {
|
|
DateTime birthday = new DateTime(1988, 4, 15); // April 15, 1988
|
|
}
|