From 8306eaaff6d49a0f332d5e2bf6498d9aa2bdf94c Mon Sep 17 00:00:00 2001 From: wvffle Date: Thu, 3 Nov 2022 23:32:19 +0000 Subject: [PATCH] Add buttons to the cover art --- front/src/components/Queue.vue | 16 +++++++- .../components/audio/visualizer/MilkDrop.vue | 38 +++++------------- front/src/style/components/_queue.scss | 39 +++++++++++++++++++ 3 files changed, 64 insertions(+), 29 deletions(-) diff --git a/front/src/components/Queue.vue b/front/src/components/Queue.vue index fb93d480d..ee93f5e5a 100644 --- a/front/src/components/Queue.vue +++ b/front/src/components/Queue.vue @@ -147,6 +147,13 @@ const hideArtist = () => { }) } } + +enum CoverType { + COVER_ART, + MILK_DROP +} + +const coverType = ref(CoverType.COVER_ART)