2024-02-13 06:24:01 +00:00
< template >
< DocComponent
title = "Vue Stepper Component"
header = "Stepper"
description = "Stepper is a component that streamlines a wizard-like workflow, organizing content into coherent steps and visually guiding users through a numbered progression in a multi-step process."
: 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' ;
2024-02-20 14:56:58 +00:00
import ExampleDoc from '@/doc/stepper/ExampleDoc.vue' ;
2024-02-13 06:24:01 +00:00
import ImportDoc from '@/doc/stepper/ImportDoc.vue' ;
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-20 14:56:58 +00:00
id : 'example' ,
label : 'Example' ,
component : ExampleDoc
2024-02-13 06:24:01 +00:00
} ,
{
id : 'accessibility' ,
label : 'Accessibility' ,
component : AccessibilityDoc
}
] ,
ptComponent : PTComponent ,
themingDoc : ThemingDoc
} ;
}
} ;
< / script >