add album explorer

This commit is contained in:
geoffrey45
2021-12-10 18:34:34 +03:00
parent 0fa55eeeae
commit aed2c74975
8 changed files with 248 additions and 68 deletions
+24
View File
@@ -0,0 +1,24 @@
<template>
<div class="a-container">
<TopAlbums />
</div>
</template>
<script>
import TopAlbums from "../components/AlbumsExplorer/TopAlbums.vue";
export default {
components: {
TopAlbums,
},
};
</script>
<style lang="scss">
.a-container {
height: 100%;
border-radius: $small;
background-color: $card-dark;
padding: $small;
}
</style>