<ul> <li *ngFor="let item of items; let i = index" [attr.data-index]="i"> {{item}} </li> </ul>
<li *ngFor="let item of items; index as i; trackBy: trackByFn">...</li>