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

The view shows the path but not the images.

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>