mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
23 lines
311 B
Vue
23 lines
311 B
Vue
<template>
|
|
<div class="home">
|
|
<AlbumOfTheDay />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import AlbumOfTheDay from "@/components/AlbumOfTheDay.vue";
|
|
|
|
export default {
|
|
name: "Home",
|
|
components: {
|
|
AlbumOfTheDay,
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style>
|
|
.home {
|
|
padding-left: 20px;
|
|
text-align: center;
|
|
}
|
|
</style> |