koel/resources/assets/js/stubs/artist.js
An Phan 3ca0009f73 Add a home (dashboard) view
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.
2016-02-08 19:25:44 +07:00

8 lines
111 B
JavaScript

export default {
id: 0,
name: '',
image: null,
playCount: 0,
albums: [],
songs: [],
};