Re implemented header navigation

This commit is contained in:
2022-01-10 00:46:26 +01:00
parent 39930428a9
commit 97c23fa895
8 changed files with 718 additions and 535 deletions

View File

@@ -1,12 +1,15 @@
<template>
<ul class="results" :class="{'shortList': shortList}">
<movies-list-item v-for='movie in results' :movie="movie" />
<template>
<ul class="results" :class="{ shortList: shortList }">
<movies-list-item
v-for="movie in results"
:movie="movie"
:key="movie.title"
/>
</ul>
</template>
<script>
import MoviesListItem from '@/components/MoviesListItem'
import MoviesListItem from "@/components/MoviesListItem";
export default {
components: { MoviesListItem },