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

66 lines
1.9 KiB
Vue
Raw Normal View History

2024-02-13 06:24:01 +00:00
<template>
<div class="doc-main">
<div class="doc-intro">
<h1>Stepper 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';
2024-09-16 13:04:45 +00:00
import PTViewer from './PTViewer.vue';
2024-02-13 06:24:01 +00:00
export default {
data() {
return {
docs: [
{
2024-09-16 13:04:45 +00:00
id: 'pt.viewer',
label: 'Viewer',
component: PTViewer
2024-02-13 06:24:01 +00:00
},
{
id: 'pt.doc.stepper',
label: 'Stepper PT Options',
component: DocApiTable,
2024-05-13 21:48:50 +00:00
data: getPTOptions('Stepper')
2024-02-13 06:24:01 +00:00
},
{
2024-08-02 09:18:43 +00:00
id: 'pt.doc.steplist',
2024-06-04 06:23:16 +00:00
label: 'StepList PT Options',
2024-02-13 06:24:01 +00:00
component: DocApiTable,
2024-06-04 06:23:16 +00:00
data: getPTOptions('StepList')
},
{
2024-08-02 09:18:43 +00:00
id: 'pt.doc.steppanels',
2024-06-04 06:23:16 +00:00
label: 'StepPanels PT Options',
component: DocApiTable,
data: getPTOptions('StepPanels')
},
{
2024-08-02 09:18:43 +00:00
id: 'pt.doc.stepitem',
2024-06-04 06:23:16 +00:00
label: 'StepItem PT Options',
component: DocApiTable,
data: getPTOptions('StepItem')
},
{
2024-08-02 09:18:43 +00:00
id: 'pt.doc.step',
2024-06-04 06:23:16 +00:00
label: 'Step PT Options',
component: DocApiTable,
data: getPTOptions('Step')
},
{
2024-08-02 09:18:43 +00:00
id: 'pt.doc.steppanel',
2024-06-04 06:23:16 +00:00
label: 'StepPanel PT Options',
component: DocApiTable,
data: getPTOptions('StepPanel')
2024-02-13 06:24:01 +00:00
}
]
};
}
};
</script>