Patrice Chalin ad95b04e69 docs(dev guide): pipes - new Dart prose, update Dart and Ts code (#1353)
+ guide/pipes/ts: update docs and example code

+ guide/pipes/dart: new prose, updated example code

+ fix platform_directives reference; html cleanup

+ enable pipes e2e testing
For `e2e-spec.js`: If the async test is executed too early it will fail
(simply because the async message hasn’t been received yet).

+ follow new constants naming convention
2016-05-13 21:44:14 +01:00

28 lines
749 B
Dart

// #docregion
import 'package:angular2/angular2.dart';
import 'flying_heroes_component.dart';
import 'hero_async_message_component.dart';
import 'hero_birthday1_component.dart';
import 'hero_birthday2_component.dart';
import 'hero_list_component.dart';
import 'power_boost_calculator_component.dart';
import 'power_booster_component.dart';
@Component(
selector: 'my-app',
templateUrl: 'app_component.html',
directives: const [
FlyingHeroesComponent,
FlyingHeroesImpureComponent,
HeroAsyncMessageComponent,
HeroBirthday,
HeroBirthday2,
HeroListComponent,
PowerBoostCalculator,
PowerBooster,
])
class AppComponent {
DateTime birthday = new DateTime(1988, 4, 15); // April 15, 1988
}