move progress bar and hot keys to new components

This commit is contained in:
geoffrey45
2022-01-28 22:42:13 +03:00
parent 17c9f3a23e
commit e847574446
9 changed files with 243 additions and 174 deletions
+9 -3
View File
@@ -1,5 +1,11 @@
<template>
<div class="result-item border">
<router-link
:to="{
name: 'AlbumView',
params: { album: album.name, artist: album.artist },
}"
class="result-item border"
>
<div
class="album-art image"
:style="{
@@ -8,7 +14,7 @@
></div>
<div class="title ellip">{{ album.name }}</div>
<div class="artistsx ellipsis">{{ album.artist }}</div>
</div>
</router-link>
</template>
<script>
@@ -48,4 +54,4 @@ export default {
color: rgba(40, 116, 216, 0.767);
}
}
</style>
</style>