<el-pagination
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
:hide-on-single-page="hideSinglePage"
:total="paginationData.total"
:current-page.sync="paginationData.currentPage"
:page-size.sync="paginationData.pageSize"
:page-sizes="[10, 20, 30, 40, 50]"
:layout="layout"
v-if="showPagination">
</el-pagination>
this.currentPage = 2;
this.showPagination = false;
this.$nextTick(()=>{
this.showPagination = true;
})