Skip to content

Commit e067e9a

Browse files
committed
fix(customers): add missing type
1 parent 70ccc3d commit e067e9a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎app/pages/customers.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ const pagination = ref({
311311
:default-page="(table?.tableApi?.getState().pagination.pageIndex || 0) + 1"
312312
:items-per-page="table?.tableApi?.getState().pagination.pageSize"
313313
:total="table?.tableApi?.getFilteredRowModel().rows.length"
314-
@update:page="(p) => table?.tableApi?.setPageIndex(p - 1)"
314+
@update:page="(p: number) => table?.tableApi?.setPageIndex(p - 1)"
315315
/>
316316
</div>
317317
</div>

0 commit comments

Comments
 (0)