How can we get the current page number of iView's Page?

when using iView"s Page:

<Page :total="40" size="small"></Page>

Let"s click on the page number of page:

how can we get the current page number of Page?

Mar.11,2021

//current     .sync 
<Page :total="40" current.sync="current" size="small"></Page>
//on-change    
<Page :total="40"  @on-change="onChange" size="small"></Page>

{
    methods:{
        onChange(currentPage){
            console.log(currentPage);
        }
    }
}
Menu