mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
27 lines
458 B
Vue
27 lines
458 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;
|
|
// background-color: $card-dark;
|
|
// padding: $small;
|
|
}
|
|
</style> |