mirror of
https://github.com/tcsenpai/swingmusic.git
synced 2025-06-08 20:25:52 +00:00
add album songs to albumView
This commit is contained in:
parent
ff6a4e34b5
commit
2f14b5a6de
@ -14,10 +14,10 @@
|
|||||||
<tr
|
<tr
|
||||||
v-for="song in songs"
|
v-for="song in songs"
|
||||||
:key="song"
|
:key="song"
|
||||||
@click="updateQueue(song), playAudio(song.filepath)"
|
|
||||||
:class="{ current: current._id.$oid == song._id.$oid }"
|
:class="{ current: current._id.$oid == song._id.$oid }"
|
||||||
>
|
>
|
||||||
<td :style="{ width: songTitleWidth + 'px' }" class="flex">
|
<td :style="{ width: songTitleWidth + 'px' }" class="flex" @click="updateQueue(song), playAudio(song.filepath)">
|
||||||
<div
|
<div
|
||||||
class="album-art rounded image"
|
class="album-art rounded image"
|
||||||
:style="{
|
:style="{
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="separator" id="av-sep"></div>
|
<div class="separator" id="av-sep"></div>
|
||||||
<div>
|
<div>
|
||||||
<SongList :album_songs="album_songs"/>
|
<SongList :songs="album_songs"/>
|
||||||
</div>
|
</div>
|
||||||
<div class="separator" id="av-sep"></div>
|
<div class="separator" id="av-sep"></div>
|
||||||
<FeaturedArtists />
|
<FeaturedArtists />
|
||||||
@ -24,7 +24,7 @@ import Header from "../components/AlbumView/Header.vue";
|
|||||||
import AlbumBio from "../components/AlbumView/AlbumBio.vue";
|
import AlbumBio from "../components/AlbumView/AlbumBio.vue";
|
||||||
import FromTheSameArtist from "../components/AlbumView/FromTheSameArtist.vue";
|
import FromTheSameArtist from "../components/AlbumView/FromTheSameArtist.vue";
|
||||||
|
|
||||||
import SongList from "../components/PlaylistView/SongList.vue";
|
import SongList from "../components/FolderView/SongList.vue";
|
||||||
import FeaturedArtists from "../components/PlaylistView/FeaturedArtists.vue";
|
import FeaturedArtists from "../components/PlaylistView/FeaturedArtists.vue";
|
||||||
|
|
||||||
import getAlbum from "../composables/getAlbum.js";
|
import getAlbum from "../composables/getAlbum.js";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user