minor changes to the albums explorer

This commit is contained in:
geoffrey45
2021-12-11 23:32:11 +03:00
parent 24741640ea
commit 9caeab9626
7 changed files with 330 additions and 2 deletions
+25
View File
@@ -0,0 +1,25 @@
<template>
<div class="a-container">
<TopArtists />
<Artists />
</div>
</template>
<script>
import TopArtists from "../components/ArtistsExplorer/TopArtists.vue";
import Artists from "../components/ArtistsExplorer/ArtistsList.vue";
export default {
components: {
TopArtists,
Artists
},
};
</script>
<style lang="scss">
.a-container {
height: 100%;
border-radius: $small;
}
</style>