mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
17 lines
232 B
Vue
17 lines
232 B
Vue
<template>
|
|
<div class="home">
|
|
<AlbumOfTheDay />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import AlbumOfTheDay from "@/components/AlbumOfTheDay.vue";
|
|
|
|
export default {
|
|
name: "Home",
|
|
components: {
|
|
AlbumOfTheDay,
|
|
},
|
|
};
|
|
</script>
|