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

66 lines
2.0 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-02-13 06:24:01 +00:00
import PTImage from './PTImage.vue';
export default {
data() {
return {
docs: [
{
id: 'pt.image',
label: 'Wireframe',
component: PTImage
},
{
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
},
{
id: 'pt.doc.stepperpanel',
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')
},
{
id: 'pt.doc.stepperpanel',
label: 'StepPanels PT Options',
component: DocApiTable,
data: getPTOptions('StepPanels')
},
{
id: 'pt.doc.stepperpanel',
label: 'StepItem PT Options',
component: DocApiTable,
data: getPTOptions('StepItem')
},
{
id: 'pt.doc.stepperpanel',
label: 'Step PT Options',
component: DocApiTable,
data: getPTOptions('Step')
},
{
id: 'pt.doc.stepperpanel',
label: 'StepPanel PT Options',
component: DocApiTable,
data: getPTOptions('StepPanel')
2024-02-13 06:24:01 +00:00
}
]
};
}
};
</script>