Hey!
I want to display my sidemenu navigation with icons behind links. I don’t know how to do this.
I try to add “icon” property to this code inside app.components :
this.pages = [
{ title: ‘Accueil’, component: Accueil, “icone”: “test” },
{ title: ‘Ma cave’, component: MaCave },
{ title: ‘Offres’, component: Offres }
];
And call this into app.html :
button menuClose ion-item *ngFor=“let p of pages” (click)=“openPage§”>
{{p.icone}} {{p.title}}
/button>
But it doesn’t work, the exte “test” does not appear!
Thanks for helping me!