mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
25 lines
412 B
Vue
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> |