Skip to content

Commit

Permalink
chore: update example
Browse files Browse the repository at this point in the history
  • Loading branch information
vinicios-gomes committed Feb 18, 2024
1 parent a87fd03 commit 09fca66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<template #pagination="{ pages, currentPage, onPageChange }">
<ul class="inline-flex">
<li @click="onPageChange(currentPage-1)">previous</li>
<p>{{ currentPage }}/{{ pages }}</p>
<p>{{ currentPage +1}}/{{ pages }}</p>
<li @click="onPageChange(currentPage+1)">next</li>
</ul>
</template>
Expand Down

0 comments on commit 09fca66

Please sign in to comment.