[Vuejs]-How can I use v-for tag to show elements in the data?

0👍

From what I understood you are looking for something like this:

<div v-for="order in orders" :key="order.id">
     <div v-for="item in order.items" :key="item.productId">
         <img :src="item.optionImage" class="option-image" />
     </div>
 </div>

Leave a comment