koel/resources/assets/js/mixins/album-attributes.js
2017-10-03 00:01:37 +01:00

15 lines
264 B
JavaScript

import { secondsToHis } from '@/utils'
export default {
computed: {
length () {
return this.album.songs.reduce((acc, song) => {
return acc + song.length
}, 0)
},
fmtLength () {
return secondsToHis(this.length)
}
}
}