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

36 lines
879 B
Vue
Raw Normal View History

2023-05-08 09:37:06 +00:00
<template>
<div class="doc-main">
<div class="doc-intro">
<h1>Paginator Pass Through</h1>
</div>
<DocSections :docs="docs" />
</div>
<DocSectionNav :docs="docs" />
</template>
<script>
import DocApiTable from '@/components/doc/DocApiTable.vue';
2024-05-13 21:48:50 +00:00
import { getPTOptions } from '@/components/doc/helpers';
2023-05-08 09:37:06 +00:00
import PTImage from './PTImage.vue';
export default {
data() {
return {
docs: [
{
id: 'pt.image',
label: 'Wireframe',
component: PTImage
},
{
id: 'pt.doc.paginator',
label: 'Paginator PT Options',
component: DocApiTable,
2024-05-13 21:48:50 +00:00
data: getPTOptions('Paginator')
2023-05-08 09:37:06 +00:00
}
]
};
}
};
</script>