I would like to assign pagination result from response.data to Vue data
so the obvious way is simply
this.data = response.data.data
this.total = response.data.total
this.perPage = response.data.per_page
But is there an ES6 way to assign the result directly to something like this?
const page = { data, total, per_page : perPage } = response.data
this = { ...this, ...page }
Note: the above code doesn't work.