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.
14 lines
228 B
JavaScript
14 lines
228 B
JavaScript
import album from './album';
|
|
|
|
export default {
|
|
album,
|
|
id: null,
|
|
album_id: 0,
|
|
title: '',
|
|
length: 0,
|
|
fmtLength: '00:00',
|
|
lyrics: '',
|
|
liked: false,
|
|
playCount: 0,
|
|
playbackState: 'stopped',
|
|
};
|