|
|
@ -14,11 +14,11 @@ |
|
|
<v-progress-circular indeterminate></v-progress-circular> |
|
|
<v-progress-circular indeterminate></v-progress-circular> |
|
|
</v-overlay> |
|
|
</v-overlay> |
|
|
<h1>{{album.title}}</h1> |
|
|
<h1>{{album.title}}</h1> |
|
|
<h3> |
|
|
|
|
|
<span v-for='(artist, index) in album.artists' :key='"artist"+index' @click='goArtist(artist)'> |
|
|
|
|
|
{{artist.name}}<span v-if='index != album.artists.length - 1'>, </span> |
|
|
|
|
|
</span> |
|
|
|
|
|
</h3> |
|
|
|
|
|
|
|
|
<v-chip-group> |
|
|
|
|
|
<v-chip v-for='(artist, index) in album.artists' :key='"artist"+index' @click='goArtist(artist)'> |
|
|
|
|
|
{{artist.name}} |
|
|
|
|
|
</v-chip> |
|
|
|
|
|
</v-chip-group> |
|
|
<div class='mt-2' v-if='!loading'> |
|
|
<div class='mt-2' v-if='!loading'> |
|
|
<span class='text-subtitle-2'>{{album.tracks.length}} {{$t("tracks")}}</span><br> |
|
|
<span class='text-subtitle-2'>{{album.tracks.length}} {{$t("tracks")}}</span><br> |
|
|
<span class='text-subtitle-2'>{{$t("Duration")}}: {{duration}}</span><br> |
|
|
<span class='text-subtitle-2'>{{$t("Duration")}}: {{duration}}</span><br> |
|
|
|