答案 0 :(得分:1)
在将项目添加到数据表之前,您可以保存当前页码并在成功添加项目后重新使用它。
演示:https://codepen.io/jacobgoh101/pen/odmEER?editors=0011
showFullMats (item) {
// store current page number first
this.prevPage = this.pagination.page;
// codes for adding items...
// reset to page number before adding item
this.$nextTick().then(()=>{
this.$set(this.pagination, 'page', this.prevPage);
});
}