I am looking to loop through questions.questions each time adding on like you would but I guess I need to do this inline as I think wish to use the number created to update item as the key in the second loop.
<div v-for="question in questions.questions">
{{question.question}}
<div v-if="grouped_answers">
<div v-for="a in grouped_answers[item].answers">
{{a.id}}
</div>
</div>
{{item += 1}}
</div>
item is already set in the data as 0 as everything else is working with that set 0 just obviously not pulling the rest of the data through.
itemthe index of the question?