mirror of
https://github.com/janishutz/MusicPlayer.git
synced 2026-09-10 14:25:24 +02:00
21 lines
484 B
Vue
21 lines
484 B
Vue
<script setup lang="ts">
|
|
import CurrentSong from '@/components/player/CurrentSong.vue';
|
|
import SharedQueue from '@/components/shared/SharedQueue.vue';
|
|
import shared from '@/ts/shared';
|
|
|
|
shared.connect();
|
|
</script>
|
|
|
|
<template>
|
|
<div class="shared-view">
|
|
<div>
|
|
<div>
|
|
<CurrentSong />
|
|
</div>
|
|
<div>
|
|
<SharedQueue :songs="[]" :idx="-1" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|