Below is the HTML code for displaying the image. I have also used require.
<div class="label-text" v-for="(imageLinks, index) in urlLinks" :key="index" > <img :src="{imageLinks}" alt="SomeWords"> <p>{{imageLinks}}</p> </div>
It should be :src="imageLinks" not :src="{imageLinks}"
:src="imageLinks"
:src="{imageLinks}"
<div class="label-text" v-for="(imageLinks, index) in urlLinks" :key="index" > <img :src="imageLinks" alt="SomeWords"> <p>{{imageLinks}}</p> </div>