How does the navbar of mint-ui get the current clicks?

how does the navbar of mint-ui get the current clicks? what I want to achieve is that users click on different tab to send requests and request different data. Previously, using tabs, in element-ui provided a click event to get the current clicks. I see that there is no specific description in the mint-ui document, only that there is a value, but how to get this value

Mar.07,2021

solve

<mt-navbar v-model='currentTab' @click.active='test'>
  <mt-tab-item id="recharge"></mt-tab-item>
  <mt-tab-item id="reward"></mt-tab-item>
  <mt-tab-item id="payout"></mt-tab-item>
  <mt-tab-item id="payback"></mt-tab-item>
</mt-navbar>

new Vue({
data:{
  currentTab: recharge
},
methods: {
  test(){
    console.log(this.currentTab); // currentTabtab
  }
}
)}
Menu