美文网首页
2022-08-30 elementUI pagination

2022-08-30 elementUI pagination

作者: 半眼鱼 | 来源:发表于2022-08-30 12:09 被阅读0次

效果图:

image.png

主要代码:

<div v-for="(comment,index) in commentData">

....

<el-pagination
@current-change="handleCurrentChangeM($event,index)"
:page-size="comment.pageSize"
:total="comment.total"
:current-page="comment.currentPage"
:background="true"
:small="true"
layout="total,prev, pager, next">
</el-pagination>

.......

handleCurrentChangeM(val,index){
this.currentTabData[index].currentPage = val;
this.answerCommentIndex = index;
this.refreshCommentReply();
},

相关文章

网友评论

      本文标题:2022-08-30 elementUI pagination

      本文链接:https://www.haomeiwen.com/subject/njulnrtx.html