angular-cn/public/docs/_examples/pipes/ts/app/app.component.html
2015-12-13 00:57:14 -08:00

48 lines
1.1 KiB
HTML

<hr>
<!-- async examples at the top so can see them in action -->
<hero-message></hero-message>
<hr>
<hero-list></hero-list>
<hr>
<!-- #docregion hero-birthday-template -->
<p>The hero's birthday is {{ birthday | date }}</p>
<!-- #enddocregion hero-birthday-template-->
<!-- #docregion format-birthday -->
<p>The hero's birthday is {{ birthday | date:"MM/dd/yy" }} </p>
<!-- #enddocregion format-birthday-->
<hr>
<h4>Hero Birthday v.2</h4>
<hero-birthday>loading...</hero-birthday>
<hr>
<!-- #docregion chained-birthday -->
<p>
The chained hero's birthday is
{{ birthday | date | uppercase}}
</p>
<!-- #enddocregion chained-birthday -->
<!-- #docregion chained-parameter-birthday -->
<p>
The chained hero's birthday is
{{ birthday | date:'fullDate' | uppercase}}
</p>
<!-- #enddocregion chained-parameter-birthday -->
<!-- #docregion chained-parameter-birthday-parens -->
<p>
The chained hero's birthday is
{{ ( birthday | date:'fullDate' ) | uppercase}}
</p>
<!-- #enddocregion chained-parameter-birthday-parens -->
<hr>
<power-booster>loading...</power-booster>
<hr>
<power-boost-calculator>loading ..</power-boost-calculator>