Q:

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
},
1

New to Communities?

Join the community