|
|
@@ -10,14 +10,15 @@ |
|
|
|
{{ films.length }} |
|
|
|
</b> |
|
|
|
</nav> |
|
|
|
<NuxtLink v-for="(film, index) in films" :key="index" :href="film.title" :to="'/details/' + 'id'" |
|
|
|
<NuxtLink v-for="(film, index) in films" :key="index" :href="film.title" :to="'/details/' + film.id" |
|
|
|
class="hover:bg-slate-200 w-full p-4 flex-col border-b-2 border-GREY-100"> |
|
|
|
<img :src="imgUrl + film.poster_path" alt=""> |
|
|
|
<img :src="config.public.IMG_BASE_URL + film.poster_path" :alt="film.title"> |
|
|
|
<span class="flex flex-row"> |
|
|
|
{{ film.title }} |
|
|
|
{{ film.original_title }} |
|
|
|
{{ film.vote_count }} |
|
|
|
{{ film.release_date }} |
|
|
|
{{ film.id }} |
|
|
|
</span> |
|
|
|
</NuxtLink> |
|
|
|
</div> |
|
|
@@ -25,8 +26,7 @@ |
|
|
|
</template> |
|
|
|
|
|
|
|
<script setup lang="ts"> |
|
|
|
const imgUrl = 'https://media.themoviedb.org/t/p/w220_and_h330_face/' |
|
|
|
|
|
|
|
const config = useRuntimeConfig() |
|
|
|
const terms = ref('') |
|
|
|
const films = ref([]) |
|
|
|
|
|
|
|