学海无涯

导航

element-plus 常用控件

分页

<el-pagination
            background
            layout="prev, pager, next"
            :total="total"
            @current-change="currentChange" />

  

const total = ref(100);
function currentChange(pageIndex: number) {
    console.log(pageIndex);
}

  

  

posted on 2023-03-05 19:42  宁静致远.  阅读(64)  评论(0编辑  收藏  举报