2024-02-13 06:24:01 +00:00
|
|
|
<template>
|
|
|
|
<DocComponent
|
|
|
|
title="Vue Stepper Component"
|
|
|
|
header="Stepper"
|
2024-02-22 09:45:53 +00:00
|
|
|
description="The Stepper component displays a wizard-like workflow by guiding users through the multi-step progression."
|
2024-02-13 06:24:01 +00:00
|
|
|
:componentDocs="docs"
|
|
|
|
:themingDocs="themingDoc"
|
|
|
|
:ptTabComponent="ptComponent"
|
|
|
|
:apiDocs="['Stepper', 'StepperPanel']"
|
|
|
|
/>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import AccessibilityDoc from '@/doc/stepper/AccessibilityDoc.vue';
|
|
|
|
import BasicDoc from '@/doc/stepper/BasicDoc.vue';
|
|
|
|
import ImportDoc from '@/doc/stepper/ImportDoc.vue';
|
2024-02-21 08:47:21 +00:00
|
|
|
import LinearDoc from '@/doc/stepper/LinearDoc.vue';
|
|
|
|
import TemplateDoc from '@/doc/stepper/TemplateDoc.vue';
|
2024-02-13 06:24:01 +00:00
|
|
|
import VerticalDoc from '@/doc/stepper/VerticalDoc.vue';
|
|
|
|
import PTComponent from '@/doc/stepper/pt/index.vue';
|
|
|
|
import ThemingDoc from '@/doc/stepper/theming/index.vue';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
docs: [
|
|
|
|
{
|
|
|
|
id: 'import',
|
|
|
|
label: 'Import',
|
|
|
|
component: ImportDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'basic',
|
|
|
|
label: 'Basic',
|
|
|
|
component: BasicDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'vertical',
|
|
|
|
label: 'Vertical',
|
|
|
|
component: VerticalDoc
|
|
|
|
},
|
|
|
|
{
|
2024-02-21 08:47:21 +00:00
|
|
|
id: 'linear',
|
|
|
|
label: 'Linear',
|
|
|
|
component: LinearDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'template',
|
|
|
|
label: 'Template',
|
|
|
|
component: TemplateDoc
|
2024-02-13 06:24:01 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'accessibility',
|
|
|
|
label: 'Accessibility',
|
|
|
|
component: AccessibilityDoc
|
|
|
|
}
|
|
|
|
],
|
|
|
|
ptComponent: PTComponent,
|
|
|
|
themingDoc: ThemingDoc
|
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|