2022-09-09 20:41:18 +00:00
|
|
|
<template>
|
2023-07-27 07:01:31 +00:00
|
|
|
<DocComponent
|
|
|
|
title="Vue Paginator Component"
|
|
|
|
header="Paginator"
|
|
|
|
description="Paginator displays data in paged format and provides navigation between pages."
|
|
|
|
:componentDocs="docs"
|
|
|
|
:apiDocs="['Paginator']"
|
|
|
|
:ptTabComponent="ptComponent"
|
|
|
|
:themingDocs="themingDoc"
|
|
|
|
/>
|
2022-09-09 20:41:18 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-02-28 08:29:30 +00:00
|
|
|
import AccessibilityDoc from '@/doc/paginator/AccessibilityDoc.vue';
|
|
|
|
import BasicDoc from '@/doc/paginator/BasicDoc.vue';
|
2023-05-08 09:37:06 +00:00
|
|
|
import CurrentPageReportDoc from '@/doc/paginator/CurrentPageReportDoc.vue';
|
|
|
|
import CustomContentDoc from '@/doc/paginator/CustomContentDoc.vue';
|
2023-02-28 08:29:30 +00:00
|
|
|
import ImportDoc from '@/doc/paginator/ImportDoc.vue';
|
|
|
|
import ResponsiveDoc from '@/doc/paginator/ResponsiveDoc.vue';
|
|
|
|
import TemplateDoc from '@/doc/paginator/TemplateDoc.vue';
|
2023-05-08 09:37:06 +00:00
|
|
|
import PTComponent from '@/doc/paginator/pt/index.vue';
|
2023-07-27 07:01:31 +00:00
|
|
|
import ThemingDoc from '@/doc/paginator/theming/index.vue';
|
2022-09-09 20:41:18 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
2023-02-28 08:29:30 +00:00
|
|
|
docs: [
|
|
|
|
{
|
|
|
|
id: 'import',
|
|
|
|
label: 'Import',
|
|
|
|
component: ImportDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'basic',
|
|
|
|
label: 'Basic',
|
|
|
|
component: BasicDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'template',
|
|
|
|
label: 'Template',
|
|
|
|
component: TemplateDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'currentpagereport',
|
|
|
|
label: 'Current Page Report',
|
|
|
|
component: CurrentPageReportDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'responsive',
|
|
|
|
label: 'Responsive',
|
|
|
|
component: ResponsiveDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'customcontent',
|
|
|
|
label: 'Custom Content',
|
|
|
|
component: CustomContentDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'accessibility',
|
|
|
|
label: 'Accessibility',
|
|
|
|
component: AccessibilityDoc
|
|
|
|
}
|
2023-05-08 09:37:06 +00:00
|
|
|
],
|
2023-07-27 07:01:31 +00:00
|
|
|
ptComponent: PTComponent,
|
|
|
|
themingDoc: ThemingDoc
|
2022-09-09 20:41:18 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|