Files
swingmusic-extended/src/components/Search/AlbumGrid.vue
T
geoffrey45 73dec9189e fix albumView using watch function
- other minor changes to almost all files
2022-02-02 21:45:23 +03:00

50 lines
928 B
Vue

<template>
<div class="albums-results border">
<div class="heading">💿 ALBUMS</div>
<div class="grid">
<AlbumCard v-for="album in albums" :key="album" :album="album" />
</div>
<LoadMore v-if="more" @loadMore="loadMore" />
</div>
</template>
<script>
import AlbumCard from "@/components/shared/AlbumCard.vue";
import LoadMore from "./LoadMore.vue";
export default {
props: ["albums", "more"],
components: {
AlbumCard,
LoadMore,
},
setup(props, { emit }) {
function loadMore() {
emit("loadMore");
}
return {
loadMore,
};
},
};
</script>
<style lang="scss">
.right-search .albums-results {
border-radius: 0.5rem;
background: #0f131b44;
margin-top: $small;
padding-bottom: $small;
padding-top: $small;
overflow-x: hidden;
.grid {
display: flex;
flex-wrap: wrap;
padding: $small $small 0 $small;
gap: $small;
}
}
</style>