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>
- [Vuejs]-Async callback with Electron+Vue and nodeffi
- [Vuejs]-How to save category in laravel 5.7 with vue.js
Source:stackexchange.com