mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-05 04:53:01 +00:00
minor changes to the albums explorer
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user