Vue.js image v-for bind

后端 未结 1 492
借酒劲吻你
借酒劲吻你 2021-01-04 04:35

Any way to use v-for to get an array of images loaded?

Have tried with the following code:

Im pretty new to Vue, I still have a lot to learn. So any help will

相关标签:
1条回答
  • 2021-01-04 04:59

    Use image object element, not images object array here in src and alt.

    <img v-for="image in images" :src="image.url" :alt="image.alt" />
    
    0 讨论(0)
提交回复
热议问题