64 lines
1.9 KiB
Vue
64 lines
1.9 KiB
Vue
|
<template>
|
||
|
<DocComponent
|
||
|
title="Vue Stepper Component"
|
||
|
header="Steps"
|
||
|
description="Steps also known as Stepper, is an indicator for the steps in a workflow."
|
||
|
:componentDocs="docs"
|
||
|
:apiDocs="['Steps', 'MenuItem']"
|
||
|
:ptTabComponent="ptComponent"
|
||
|
:themingDocs="themingDoc"
|
||
|
/>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import AccessibilityDoc from '@/doc/steps/AccessibilityDoc.vue';
|
||
|
import BasicDoc from '@/doc/steps/BasicDoc.vue';
|
||
|
import ControlledDoc from '@/doc/steps/ControlledDoc.vue';
|
||
|
import ImportDoc from '@/doc/steps/ImportDoc.vue';
|
||
|
import LinearDoc from '@/doc/steps/LinearDoc.vue';
|
||
|
import TemplateDoc from '@/doc/steps/TemplateDoc.vue';
|
||
|
import PTComponent from '@/doc/steps/pt/index.vue';
|
||
|
import ThemingDoc from '@/doc/steps/theming/index.vue';
|
||
|
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
docs: [
|
||
|
{
|
||
|
id: 'import',
|
||
|
label: 'Import',
|
||
|
component: ImportDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'basic',
|
||
|
label: 'Basic',
|
||
|
component: BasicDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'controlled',
|
||
|
label: 'Controlled',
|
||
|
component: ControlledDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'linear',
|
||
|
label: 'Linear',
|
||
|
component: LinearDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'template',
|
||
|
label: 'Template',
|
||
|
component: TemplateDoc
|
||
|
},
|
||
|
{
|
||
|
id: 'accessibility',
|
||
|
label: 'Accessibility',
|
||
|
component: AccessibilityDoc
|
||
|
}
|
||
|
],
|
||
|
ptComponent: PTComponent,
|
||
|
themingDoc: ThemingDoc
|
||
|
};
|
||
|
}
|
||
|
};
|
||
|
</script>
|