mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 04:23:01 +00:00
c9830842ed
- this allows to have duplicate tracks in queue safely - store indexes in localstorage instead of track objects.
22 lines
481 B
Vue
22 lines
481 B
Vue
<template>
|
|
<div class="r-home">
|
|
<UpNext :next="queue.tracks[queue.next]" :playNext="queue.playNext" />
|
|
<Recommendations />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
.r-home {
|
|
height: calc(100% - 1rem);
|
|
padding: 0 $small $small 0;
|
|
margin-top: $small;
|
|
}
|
|
</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>
|