angular-docs-cn/public/docs/_examples/pipes/dart/lib/hero_list_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
390 B
Dart

import 'package:angular2/angular2.dart';
import 'fetch_json_pipe.dart';
@Component(
selector: 'hero-list',
template: '''
<h4>Heroes from JSON File</h4>
<div *ngFor="#hero of ('heroes.json' | fetch) ">
{{hero['name']}}
</div>
<p>Heroes as JSON:
{{'heroes.json' | fetch | json}}
</p>
''',
pipes: const [FetchJsonPipe])
class HeroListComponent {}