mirror of
https://github.com/koel/koel
synced 2024-11-25 05:30:20 +00:00
16 lines
245 B
JavaScript
16 lines
245 B
JavaScript
import album from './album'
|
|
import artist from './artist'
|
|
|
|
export default {
|
|
album,
|
|
artist,
|
|
id: null,
|
|
album_id: 0,
|
|
title: '',
|
|
length: 0,
|
|
fmtLength: '00:00',
|
|
lyrics: '',
|
|
liked: false,
|
|
playCount: 0,
|
|
playbackState: 'stopped'
|
|
}
|