remove div nesting on right sidebar

+ rewrite vTooltip to handle updates to tooltip text
This commit is contained in:
geoffrey45
2022-09-06 15:59:18 +03:00
parent 90514c8080
commit c9cd6a8067
8 changed files with 123 additions and 139 deletions
+2 -2
View File
@@ -86,11 +86,11 @@ const props = defineProps<{
}>();
const emit = defineEmits<{
(e: "updateQueue", song: Track): void;
(e: "updateQueue"): void;
}>();
function emitUpdate(track: Track) {
emit("updateQueue", track);
emit("updateQueue");
}
function showMenu(e: Event) {