mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-07-28 21:51:41 +00:00
20 lines
432 B
Vue
20 lines
432 B
Vue
<template>
|
|
<div class="r-home">
|
|
<UpNext :next="queue.tracklist[queue.next]" :playNext="queue.playNext" />
|
|
<Recommendations />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
.r-home {
|
|
height: calc(100% - 1rem);
|
|
}
|
|
</style>
|
|
|
|
<script setup lang="ts">
|
|
import Recommendations from "./Recommendation.vue";
|
|
import UpNext from "../Queue/upNext.vue";
|
|
import useQStore from "../../../stores/queue";
|
|
const queue = useQStore();
|
|
</script>
|