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>
- [Vuejs]-Vuejs Unexpected token < in JSON at position 0 from express server
- [Vuejs]-Can't preview Vue app developed with Vite in a 3rd party tool iframe (but can using Vue CLI)
Source:stackexchange.com