Skip to content
Snippets Groups Projects

add link in page-perso

1 file
+ 3
1
Compare changes
  • Side-by-side
  • Inline
+ 3
1
@@ -14,11 +14,12 @@
<div class="likeList">
<div v-for="movie in likedFilms" :key="movie.id">
<p class="film">
<img
<router-link :to="'/movie/'+ movie.id + '?uid=' + userId"><img
:src="'https://image.tmdb.org/t/p/original/' + movie.poster_path"
withd="100"
height="300"
/>
</router-link>
</p>
</div>
</div>
@@ -32,6 +33,7 @@ export default {
data: function () {
return {
likedFilms: [],
userId: "",
};
},
methods: {
Loading