2022-12-22 17:14:16 +00:00
|
|
|
<template>
|
2023-02-28 08:29:30 +00:00
|
|
|
<DocComponent
|
|
|
|
title="Vue Stepper Component"
|
2023-03-02 14:19:42 +00:00
|
|
|
header="Steps"
|
2023-02-28 08:29:30 +00:00
|
|
|
description="Steps also known as Stepper, is an indicator for the steps in a workflow. Layout of steps component is optimized for responsive design."
|
|
|
|
:componentDocs="docs"
|
|
|
|
:apiDocs="['Steps', 'MenuItem']"
|
|
|
|
/>
|
2022-12-22 17:14:16 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-02-28 08:29:30 +00:00
|
|
|
import AccessibilityDoc from '@/doc/steps/AccessibilityDoc';
|
|
|
|
import BasicDoc from '@/doc/steps/BasicDoc';
|
|
|
|
import ImportDoc from '@/doc/steps/ImportDoc';
|
|
|
|
import InteractiveDoc from '@/doc/steps/InteractiveDoc';
|
|
|
|
import StyleDoc from '@/doc/steps/StyleDoc';
|
2022-12-22 17:14:16 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
2023-02-28 08:29:30 +00:00
|
|
|
docs: [
|
2022-12-22 17:14:16 +00:00
|
|
|
{
|
2023-02-28 08:29:30 +00:00
|
|
|
id: 'import',
|
|
|
|
label: 'Import',
|
|
|
|
component: ImportDoc
|
2022-12-22 17:14:16 +00:00
|
|
|
},
|
|
|
|
{
|
2023-02-28 08:29:30 +00:00
|
|
|
id: 'basic',
|
|
|
|
label: 'Basic',
|
|
|
|
component: BasicDoc
|
2022-12-22 17:14:16 +00:00
|
|
|
},
|
|
|
|
{
|
2023-02-28 08:29:30 +00:00
|
|
|
id: 'interactive',
|
|
|
|
label: 'Interactive',
|
|
|
|
component: InteractiveDoc
|
2022-12-22 17:14:16 +00:00
|
|
|
},
|
|
|
|
{
|
2023-02-28 08:29:30 +00:00
|
|
|
id: 'style',
|
|
|
|
label: 'Style',
|
|
|
|
component: StyleDoc
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'accessibility',
|
|
|
|
label: 'Accessibility',
|
|
|
|
component: AccessibilityDoc
|
2022-12-22 17:14:16 +00:00
|
|
|
}
|
2023-02-28 08:29:30 +00:00
|
|
|
]
|
2022-12-22 17:14:16 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|