koel/resources/assets/js/stubs/album.js

15 lines
225 B
JavaScript
Raw Normal View History

2015-12-13 04:42:28 +00:00
import config from '../config';
import artist from './artist';
export default {
2016-06-25 16:05:24 +00:00
artist,
id: 0,
artist_id: 0,
name: '',
cover: config.unknownCover,
playCount: 0,
length: 0,
fmtLength: '00:00',
songs: [],
2015-12-13 04:42:28 +00:00
};