mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-03-11 11:55:38 +00:00
Re implemented header navigation
This commit is contained in:
@@ -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 },
|
||||
|
||||
Reference in New Issue
Block a user