feat: basic connection between frontend and backend

This commit is contained in:
2026-09-07 19:35:30 +02:00
parent 867374fa47
commit 054fda2fb9
16 changed files with 329 additions and 26 deletions
+20
View File
@@ -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>