use third-party module to auto-persist queue store

+ more redesign
+ convert js files to ts
This commit is contained in:
geoffrey45
2022-08-19 15:58:32 +03:00
parent 5476575d10
commit 03219166c5
20 changed files with 305 additions and 197 deletions
+2 -1
View File
@@ -106,7 +106,8 @@ onBeforeRouteUpdate((to, from) => {
height: 100%;
width: 100%;
object-fit: cover;
object-position: bottom;
object-position: bottom right;
transition: all .25s ease;
}
}
+1 -1
View File
@@ -14,8 +14,8 @@
<script setup lang="ts">
import PlaylistCard from "@/components/playlists/PlaylistCard.vue";
import usePStore from "@/stores/pages/playlists";
import NewPlaylistCard from "@/components/playlists/NewPlaylistCard.vue";
import usePStore from "@/stores/pages/playlists";
const pStore = usePStore();
</script>