Skip to content

Instantly share code, notes, and snippets.

@wKoza
Created January 15, 2017 11:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wKoza/aa0245ab84025043d3a830ef7fdcc8fd to your computer and use it in GitHub Desktop.
Save wKoza/aa0245ab84025043d3a830ef7fdcc8fd to your computer and use it in GitHub Desktop.
import {Component} from '@angular/core';
@Component({
selector: 'pipe',
template: `
<h1>Les pipes</h1>
<hr />
<p>{{maDate}}</p>
<p>{{maDate | date:'d MMM y'}}</p>
`
})
export class PipeComponent {
maDate:Date=new Date('2016-09-25');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment