chore: make prop optional in PaginationEmit

This commit is contained in:
kolaente 2025-05-13 21:38:06 +02:00
parent 5539591d97
commit 359b75feac
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ import BaseButton from '@/components/base/BaseButton.vue'
const props = withDefaults(defineProps<{
totalPages: number,
currentPage: number
currentPage?: number
}>(), {
currentPage: 1,
})