Skip to content
aeria-pagination
This component renders a group of checkboxes (or radio inputs) depending on the property type.
Example
Click the buttons to see how the page changes.
page of 10
vue
<script setup lang="ts">
const pagination = ref({
recordsCount: 10,
recordsTotal: 100,
offset: 0,
limit: 10,
})
</script>
<template>
<aeria-pagination :pagination></aeria-pagination>
</template>
Props
Types:
typescript
type Pagination = {
recordsCount: number
recordsTotal: number
offset: number
limit: number
}
pagination
Pagination: the pagination object. It is the same object returned bygetAll
.