<template> <DocSectionText v-bind="$attrs"> <p>When <i>linear</i> property is present, current step must be completed in order to move to the next step.</p> </DocSectionText> <div class="card flex justify-content-center"> <Stepper linear> <StepperPanel header="Header I"> <template #content="{ nextCallback }"> <div class="flex flex-column h-12rem"> <div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content I</div> </div> <div class="flex pt-4 justify-content-end"> <Button label="Next" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" /> </div> </template> </StepperPanel> <StepperPanel header="Header II"> <template #content="{ prevCallback, nextCallback }"> <div class="flex flex-column h-12rem"> <div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content II</div> </div> <div class="flex pt-4 justify-content-between"> <Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" /> <Button label="Next" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" /> </div> </template> </StepperPanel> <StepperPanel header="Header III"> <template #content="{ prevCallback }"> <div class="flex flex-column h-12rem"> <div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content III</div> </div> <div class="flex pt-4 justify-content-start"> <Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" /> </div> </template> </StepperPanel> </Stepper> </div> <DocSectionCode :code="code" /> </template> <script> export default { data() { return { code: { basic: ` <Stepper linear> <StepperPanel header="Header I"> <template #content="{ nextCallback }"> <div class="flex flex-column h-12rem"> <div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content I</div> </div> <div class="flex pt-4 justify-content-end"> <Button label="Next" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" /> </div> </template> </StepperPanel> <StepperPanel header="Header II"> <template #content="{ prevCallback, nextCallback }"> <div class="flex flex-column h-12rem"> <div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content II</div> </div> <div class="flex pt-4 justify-content-between"> <Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" /> <Button label="Next" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" /> </div> </template> </StepperPanel> <StepperPanel header="Header III"> <template #content="{ prevCallback }"> <div class="flex flex-column h-12rem"> <div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content III</div> </div> <div class="flex pt-4 justify-content-start"> <Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" /> </div> </template> </StepperPanel> </Stepper> `, options: ` <template> <div class="card flex justify-content-center"> <Stepper linear> <StepperPanel header="Header I"> <template #content="{ nextCallback }"> <div class="flex flex-column h-12rem"> <div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content I</div> </div> <div class="flex pt-4 justify-content-end"> <Button label="Next" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" /> </div> </template> </StepperPanel> <StepperPanel header="Header II"> <template #content="{ prevCallback, nextCallback }"> <div class="flex flex-column h-12rem"> <div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content II</div> </div> <div class="flex pt-4 justify-content-between"> <Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" /> <Button label="Next" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" /> </div> </template> </StepperPanel> <StepperPanel header="Header III"> <template #content="{ prevCallback }"> <div class="flex flex-column h-12rem"> <div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content III</div> </div> <div class="flex pt-4 justify-content-start"> <Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" /> </div> </template> </StepperPanel> </Stepper> </div> </template> <style scoped> .p-stepper { flex-basis: 50rem; } <\/style> `, composition: ` <template> <div class="card flex justify-content-center"> <Stepper linear> <StepperPanel header="Header I"> <template #content="{ nextCallback }"> <div class="flex flex-column h-12rem"> <div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content I</div> </div> <div class="flex pt-4 justify-content-end"> <Button label="Next" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" /> </div> </template> </StepperPanel> <StepperPanel header="Header II"> <template #content="{ prevCallback, nextCallback }"> <div class="flex flex-column h-12rem"> <div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content II</div> </div> <div class="flex pt-4 justify-content-between"> <Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" /> <Button label="Next" icon="pi pi-arrow-right" iconPos="right" @click="nextCallback" /> </div> </template> </StepperPanel> <StepperPanel header="Header III"> <template #content="{ prevCallback }"> <div class="flex flex-column h-12rem"> <div class="border-2 border-dashed surface-border border-round surface-ground flex-auto flex justify-content-center align-items-center font-medium">Content III</div> </div> <div class="flex pt-4 justify-content-start"> <Button label="Back" severity="secondary" icon="pi pi-arrow-left" @click="prevCallback" /> </div> </template> </StepperPanel> </Stepper> </div> </template> <style scoped> .p-stepper { flex-basis: 50rem; } <\/style> ` } }; } }; </script> <style scoped> .p-stepper { flex-basis: 50rem; } </style>