koel/resources/assets/js/mixins/album-attributes.js
2018-01-30 00:13:54 +01:00

13 lines
239 B
JavaScript

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