[Vuejs]-Image not showing with the Path. I want to show images dynamically based on path coming from the database

0👍

It should be :src="imageLinks" not :src="{imageLinks}"

<div class="label-text" v-for="(imageLinks, index) in urlLinks" :key="index" >
    <img :src="imageLinks" alt="SomeWords">
    <p>{{imageLinks}}</p>         
</div>

Leave a comment