Files
swingmusic-extended/src/views/ArtistsExplorer.vue
T
2021-12-11 23:32:11 +03:00

25 lines
412 B
Vue

<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>