demo6.vue 226 B

1234567891011121314
  1. <template>
  2. <m-pagination
  3. :total="200"
  4. show-elevator
  5. @current-change="handleCurrentChange">
  6. </m-pagination>
  7. </template>
  8. <script setup>
  9. const handleCurrentChange = (val) => {
  10. console.log(val);
  11. }
  12. </script>