[Vuejs]-Vuejs Invalid v-for expression as array element does not exist?

0👍

try this

v-for=”(item, key) in recommendationResponse[recommendedItems]”

VueJs v-for works like this, instead of writing “as” we have to write “in”

Leave a comment