[Vuejs]-Getting my actual movie cover data to render instead of just the hash in vue.js

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>

Leave a comment