mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-05 04:53:01 +00:00
25 lines
401 B
Vue
25 lines
401 B
Vue
<template>
|
|
<div class="a-container">
|
|
<TopAlbums />
|
|
<Albums />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import TopAlbums from "../components/AlbumsExplorer/TopAlbums.vue";
|
|
import Albums from "../components/AlbumsExplorer/AlbumList.vue";
|
|
|
|
export default {
|
|
components: {
|
|
TopAlbums,
|
|
Albums
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.a-container {
|
|
height: 100%;
|
|
border-radius: $small;
|
|
}
|
|
</style> |