primevue-mirror/pages/steps.vue

58 lines
1.7 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']"
2023-04-28 06:58:06 +00:00
:ptTabComponent="ptComponent"
:themingDocs="themingDoc"
2023-02-28 08:29:30 +00:00
/>
</template>
<script>
2023-09-21 11:21:43 +00:00
import AccessibilityDoc from '@/doc/steps/AccessibilityDoc.vue';
import BasicDoc from '@/doc/steps/BasicDoc.vue';
import ImportDoc from '@/doc/steps/ImportDoc.vue';
import InteractiveDoc from '@/doc/steps/InteractiveDoc.vue';
import RouterDoc from '@/doc/steps/RouterDoc.vue';
2023-04-28 06:58:06 +00:00
import PTComponent from '@/doc/steps/pt/index.vue';
import ThemingDoc from '@/doc/steps/theming/index.vue';
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-08-30 14:38:19 +00:00
{
id: 'router',
label: 'Router',
component: RouterDoc
},
2023-02-28 08:29:30 +00:00
{
id: 'accessibility',
label: 'Accessibility',
component: AccessibilityDoc
}
2023-04-28 06:58:06 +00:00
],
ptComponent: PTComponent,
themingDoc: ThemingDoc
};
}
};
</script>