koel/resources/assets/js/stubs/song.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

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',
};