Mungai Geoffrey 4e1e1b8979
move nav folder-paths into a new component (#66)
* move folder-paths into a new component

* move nav playlist title into new components
2022-06-07 12:51:47 +03:00

21 lines
285 B
Vue

<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>