mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-03-11 11:55:38 +00:00
Added some fresh new todos
This commit is contained in:
@@ -5,6 +5,8 @@
|
|||||||
<navigation></navigation>
|
<navigation></navigation>
|
||||||
|
|
||||||
<!-- Header with search field -->
|
<!-- Header with search field -->
|
||||||
|
|
||||||
|
<!-- TODO move this to the navigation component -->
|
||||||
<header class="header">
|
<header class="header">
|
||||||
<search-input v-model="query"></search-input>
|
<search-input v-model="query"></search-input>
|
||||||
</header>
|
</header>
|
||||||
@@ -16,7 +18,7 @@
|
|||||||
<darkmode-toggle />
|
<darkmode-toggle />
|
||||||
|
|
||||||
<!-- Display the component assigned to the given route (default: home) -->
|
<!-- Display the component assigned to the given route (default: home) -->
|
||||||
<router-view class="content"></router-view>
|
<router-view class="content" :key="$route.fullPath"></router-view>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
@@ -2,6 +2,7 @@
|
|||||||
<li class="movies-item" :class="{'shortList': shortList}">
|
<li class="movies-item" :class="{'shortList': shortList}">
|
||||||
<a class="movies-item__link" :class="{'no-image': noImage}" @click.prevent="openMoviePopup(movie.id, movie.type)">
|
<a class="movies-item__link" :class="{'no-image': noImage}" @click.prevent="openMoviePopup(movie.id, movie.type)">
|
||||||
|
|
||||||
|
<!-- TODO change to picture element -->
|
||||||
<figure class="movies-item__poster">
|
<figure class="movies-item__poster">
|
||||||
<img v-if="!noImage" class="movies-item__img" src="~assets/placeholder.png" v-img="poster()" alt="">
|
<img v-if="!noImage" class="movies-item__img" src="~assets/placeholder.png" v-img="poster()" alt="">
|
||||||
<img v-if="noImage" class="movies-item__img is-loaded" src="~assets/no-image.png" alt="">
|
<img v-if="noImage" class="movies-item__img is-loaded" src="~assets/no-image.png" alt="">
|
||||||
|
|||||||
Reference in New Issue
Block a user