angular-docs-cn/public/docs/_examples/pipes/dart/lib/hero_birthday2_component.dart
Kathy Walrath 0f5ea46590 samples(dart pipes): update to b3 and latest TS UI
Based on #821 by tomplusplus.

Closes #827.
2016-02-09 14:32:25 -08:00

20 lines
455 B
Dart

import 'package:angular2/angular2.dart';
@Component(
selector: 'hero-birthday',
template: '''
<p>The hero's birthday is {{ birthday | date:format }}</p>
<button (click)="toggleFormat()">Toggle Format</button>
''')
class HeroBirthday {
DateTime birthday = new DateTime(1988, 4, 15); // April 15, 1988
bool toggle = true;
get format => toggle ? 'shortDate' : 'fullDate';
void toggleFormat() {
toggle = !toggle;
}
}