Added movie tile. Fixed actor header. Larger breakpoint for nav menu.
This commit is contained in:
@@ -1,11 +1,48 @@
|
||||
<template>
|
||||
<div class="movies">
|
||||
<h1 class="heading">Movies</h1>
|
||||
<div class="tiles">
|
||||
<Movie
|
||||
v-for="movie in movies"
|
||||
:key="`movie-${movie.id}`"
|
||||
:movie="movie"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import Movie from './tile.vue';
|
||||
|
||||
async function mounted() {
|
||||
const { movies, totalCount } = await this.$store.dispatch('fetchMovies', {
|
||||
limit: 30,
|
||||
});
|
||||
|
||||
this.movies = movies;
|
||||
this.totalCount = totalCount;
|
||||
}
|
||||
|
||||
export default {
|
||||
components: {
|
||||
Movie,
|
||||
},
|
||||
data() {
|
||||
return {
|
||||
movies: [],
|
||||
totalCount: 0,
|
||||
};
|
||||
},
|
||||
mounted,
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.movies {
|
||||
padding: 1rem;
|
||||
}
|
||||
|
||||
.tiles {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fill, 12rem);
|
||||
}
|
||||
</style>
|
||||
|
||||
Reference in New Issue
Block a user