Ion-img set default image

Hi guys,
how to set a default image before image is loaded inside ion-image tag
i have tried this code below.

 <ion-img [src]="item.documentpath || '../../assets/imgs/default-img.png'" alt='Error Loading Image'></ion-img>

but not working
please help

thanks

This should work:

<ion-img [src]="item.documentpath ? item.documentpath : '../../assets/imgs/default-img.png'></ion-img>