mirror of
https://github.com/janishutz/MusicPlayer.git
synced 2026-09-10 14:25:24 +02:00
feat: basic connection between frontend and backend
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
<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>
|
||||
|
||||
Reference in New Issue
Block a user