方法一
1.将官网上的分页current-page="currentPage4" 改成 :current-page.sync="currentPage4"
2.搜索时 this.currentPage4 = 1
方法二
data里面初始化paginationShow为true
<el-pagination v-if="paginationShow"
@current-change="handleCurrentChange"
:current-page.sync="pagination.currentPage"
:page-size="pagination.size"
layout="total, prev, pager, next, jumper"
:total="pagination.total">
</el-pagination>
search () {
this.paginationShow = false
this.handleCurrentChange(1)
this.$nextTick(function () {
this.paginationShow = true;
})
},