首页 > 其他分享 >element-plus 常用控件

element-plus 常用控件

时间:2023-03-05 19:58:07浏览次数:36  
标签:function 控件 pageIndex 常用 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);
}

  

  

标签:function,控件,pageIndex,常用,element,plus
From: https://www.cnblogs.com/friend/p/17181411.html

相关文章