Aurelia repeat.for 项目的访问索引

Aurelia repeat.for access index of item

我有一个简单的repeat.for:

<li repeat.for="item of items">${item}</li>

目前我正在使用:${$parent.items.indexOf(item)}。 在 angular 中是否有 shorthand 之类的 {{$index}}?

有。写这个:

<li repeat.for="item of items">${$index} - ${item}</li>