A) I make a simple custom Pipe
@Pipe({name: ‘grDate’})
export class GrDatePipe implements PipeTransform {
transform(date, format) {
return moment(date).format(‘LL’);
}
}
B) I import the pipe in @NgModule (file app.module.ts)
- import {GrDatePipe} from ‘…/pipes/gr.date’
@NgModule({
declarations: [
…
GrDatePipe
],
- I implement the custom pipe (home.html)
ion-list *ngFor=“let todo of todos | name: grDate”
And i take the error:
Component GrDatePipe is not part of any NgModule or the module has not been imported into your module
Can anyone help me?