0👍
✅
You will want to create a folder and put all the movie posters in there, name them poster-movie_id.png
e.g. poster-3.png
then in your code
<template>
<div class="list">
<div v-for="list in lists" v-bind:key="list.id">
<img src="images/posters/poster-{{ list.movie_id }}.png">
</div>
</div>
</template>
Source:stackexchange.com