[Vuejs]-VueJs-tinder swiper

0👍

In the source of the JSFiddle you provided, the author is using the image url in the background-image style. Try changing your snippet to something like:

<template slot-scope="{data}">
   <div
     class="pic"
     v-for="i in images"
   >
    <img :style="`background-image:url(${i.src})`" />
   </div>
</template>

Leave a comment