vuetify sum table data code example
Example: vuetify sum table data
sumField(key) {
// sum data in given key (property)
let total = 0
const sum = this.goldlineup.reduce((accumulator, currentValue) => {
return (total += +currentValue[key])
}, 0)
return sum
},