koel/resources/assets/js/stubs/song.js

17 lines
245 B
JavaScript
Raw Normal View History

2016-11-26 03:25:35 +00:00
import album from './album'
import artist from './artist'
2015-12-13 04:42:28 +00:00
export default {
2016-06-25 16:05:24 +00:00
album,
artist,
id: null,
album_id: 0,
title: '',
length: 0,
fmtLength: '00:00',
lyrics: '',
liked: false,
playCount: 0,
2016-11-26 03:25:35 +00:00
playbackState: 'stopped'
}