Showing
2 changed files
with
1 additions
and
0 deletions
@@ -70,6 +70,7 @@ onMounted(() => { | @@ -70,6 +70,7 @@ onMounted(() => { | ||
70 | v-for="movie in movies" | 70 | v-for="movie in movies" |
71 | :key="movie.id" | 71 | :key="movie.id" |
72 | class="bg-gray-800 rounded-lg overflow-hidden shadow-lg transition-transform duration-300 hover:scale-105 cursor-pointer" | 72 | class="bg-gray-800 rounded-lg overflow-hidden shadow-lg transition-transform duration-300 hover:scale-105 cursor-pointer" |
73 | + @click="navigateTo(`/movies/${movie.id}`)" | ||
73 | > | 74 | > |
74 | <div class="relative pb-[150%]"> | 75 | <div class="relative pb-[150%]"> |
75 | <img | 76 | <img |
-
Please register or login to post a comment