mirror of
https://github.com/koel/koel
synced 2024-12-30 06:23:05 +00:00
13 lines
239 B
JavaScript
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)
|
|
}
|
|
}
|
|
}
|