This is probably super simple but I’m not very familiar with handlebar syntax and I’m still learning Framework7…
I would like to be able to access the index of each item that is being output from the items
array into the itemTemplate
. Something like:
itemTemplate:
'<li>' +
'<p>''{{index}}' </p>+
'<p>''{{title}}' </p>+
'</li>' +
Is it possible to get access to this index?