move nav folder-paths into a new component (#66)

* move folder-paths into a new component

* move nav playlist title into new components
This commit is contained in:
Mungai Geoffrey
2022-06-07 12:51:47 +03:00
committed by GitHub
parent f7218875a6
commit 4e1e1b8979
5 changed files with 155 additions and 139 deletions
+20
View File
@@ -0,0 +1,20 @@
<template>
<div
class="title"
v-show="$route.name == 'Playlists'"
v-motion
:initial="{
opacity: 0,
x: -20,
}"
:visible="{
opacity: 1,
x: 0,
transition: {
delay: 100,
},
}"
>
Playlists
</div>
</template>