koel/resources/assets/js/mixins/album-attributes.js

14 lines
239 B
JavaScript
Raw Normal View History

2017-10-02 23:01:37 +00:00
import { secondsToHis } from '@/utils'
2017-04-23 16:01:02 +00:00
export default {
computed: {
length () {
2018-01-29 23:13:54 +00:00
return this.album.songs.reduce((acc, song) => acc + song.length, 0)
2017-04-23 16:01:02 +00:00
},
fmtLength () {
return secondsToHis(this.length)
}
}
}