remove test header from queue page

This commit is contained in:
geoffrey45
2022-09-21 16:54:24 +03:00
committed by Mungai Njoroge
parent 45d91f0382
commit 09453fc419
3 changed files with 11 additions and 52 deletions
+8 -6
View File
@@ -1,18 +1,16 @@
<template>
<button
class="play-btn"
@click="usePlayFrom(source, useQStore, store)"
>
<button class="play-btn" @click="usePlayFrom(source, useQStore, store)">
<PlaySvg />
</button>
</template>
<script setup lang="ts">
import { playSources } from "@/composables/enums";
import useQStore from "@/stores/queue";
import useAlbumStore from "@/stores/pages/album";
import usePlaylistStore from "@/stores/pages/playlist";
import { playSources } from "@/composables/enums";
import usePlayFrom from "@/composables/usePlayFrom";
import useQStore from "@/stores/queue";
import PlaySvg from "../../assets/icons/play.svg";
@@ -27,5 +25,9 @@ defineProps<{
aspect-ratio: 1;
padding: 0;
border-radius: 0.65rem;
svg {
transition: none;
}
}
</style>