primevue-mirror/apps/showcase/doc/paginator/pt/PTViewer.vue

25 lines
524 B
Vue
Raw Normal View History

2024-09-18 13:11:12 +00:00
<template>
2024-09-20 12:22:44 +00:00
<DocPTViewer :docs="docs">
2024-09-18 13:11:12 +00:00
<div class="w-full">
<Paginator :rows="10" :totalRecords="120" :rowsPerPageOptions="[10, 20, 30]"></Paginator>
</div>
</DocPTViewer>
</template>
<script>
import { getPTOptions } from '@/components/doc/helpers';
export default {
data() {
return {
2024-09-20 12:22:44 +00:00
docs: [
2024-09-18 13:11:12 +00:00
{
data: getPTOptions('Paginator'),
key: 'Paginator'
}
]
};
}
};
</script>