primevue-mirror/pages/steps.vue

52 lines
1.5 KiB
Vue
Raw Normal View History

<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']"
/>
</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';
export default {
data() {
return {
2023-02-28 08:29:30 +00:00
docs: [
{
2023-02-28 08:29:30 +00:00
id: 'import',
label: 'Import',
component: ImportDoc
},
{
2023-02-28 08:29:30 +00:00
id: 'basic',
label: 'Basic',
component: BasicDoc
},
{
2023-02-28 08:29:30 +00:00
id: 'interactive',
label: 'Interactive',
component: InteractiveDoc
},
{
2023-02-28 08:29:30 +00:00
id: 'style',
label: 'Style',
component: StyleDoc
},
{
id: 'accessibility',
label: 'Accessibility',
component: AccessibilityDoc
}
2023-02-28 08:29:30 +00:00
]
};
}
};
</script>