missing vue file
This commit is contained in:
parent
70736fa217
commit
db00fbf45d
1 changed files with 13 additions and 0 deletions
13
src/components/AlreadyQueued.vue
Normal file
13
src/components/AlreadyQueued.vue
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
<script setup>
|
||||||
|
const emits = defineEmits(["append", "wait", "cancel"])
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<div class="reveal" id="alreadyqueued" data-reveal >
|
||||||
|
<h1>You are already in queue</h1>
|
||||||
|
<p>While you can append the song anyway, you can also queue it to the "waiting room".</p>
|
||||||
|
<p>It will be appended to the queue as soon, as your next song leaves the queue.</p>
|
||||||
|
<button class="button" @click="$emit('append')">Append</button>
|
||||||
|
<button class="button" @click="$emit('wait')">Waiting Room</button>
|
||||||
|
<button class="button" @click="$emit('cancel')">Abort</button>
|
||||||
|
</div>
|
||||||
|
</template>
|
Loading…
Add table
Reference in a new issue