koel/resources/assets/js/mixins/album-attributes.js
2017-04-24 00:01:02 +08:00

15 lines
265 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)
}
}
}