mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
17 lines
278 B
Vue
17 lines
278 B
Vue
<template>
|
|
<div class="queue-view">
|
|
<Queue :isOnQueuePage="true" />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import Queue from "@/components/RightSideBar/Queue.vue";
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.queue-view {
|
|
background-color: $black;
|
|
height: 100%;
|
|
}
|
|
</style>
|