mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-07-28 13:41:42 +00:00
21 lines
285 B
Vue
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>
|