mirror of
https://github.com/koel/koel
synced 2024-12-21 10:03:10 +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.
14 lines
242 B
JavaScript
14 lines
242 B
JavaScript
import config from '../config';
|
|
import artist from './artist';
|
|
|
|
export default {
|
|
artist,
|
|
id: 0,
|
|
artist_id: 0,
|
|
name: '',
|
|
cover: config.unknownCover,
|
|
playCount: 0,
|
|
length: 0,
|
|
fmtLength: '00:00',
|
|
songs: []
|
|
};
|