<divv-for="item in itens":key="item.id">{{ item.text }}</div>
// if you need the index
<divv-for="(item, index) in items">{{ index }} - {{ item.message }}</div>
<!-- To gain access to the array index: --><ul><liv-for="(game, index) in games"></li></ul><!--
You only want the index in specific cases. Use `:key` as
standard. See the other greps.
-->