mirror of
https://github.com/koel/koel
synced 2024-12-21 01:53:11 +00:00
3ca0009f73
A home/dashboard view has been added, which contains most recently-played songs (in the current session), top songs, albums, and artists. Song playback has also been revised with proper Vue's reactivity, resulting in a much better and cleaner code base.
8 lines
111 B
JavaScript
8 lines
111 B
JavaScript
export default {
|
|
id: 0,
|
|
name: '',
|
|
image: null,
|
|
playCount: 0,
|
|
albums: [],
|
|
songs: [],
|
|
};
|