89 lines
2.5 KiB
Vue
89 lines
2.5 KiB
Vue
|
<template>
|
||
|
<div>
|
||
|
<Head>
|
||
|
<Title>Vue Stepper Component</Title>
|
||
|
<Meta name="description" content="Steps also known as Stepper, is an indicator for the steps in a workflow. Layout of steps component is optimized for responsive design." />
|
||
|
</Head>
|
||
|
|
||
|
<div class="content-section introduction">
|
||
|
<div class="feature-intro">
|
||
|
<h1>Steps</h1>
|
||
|
<p>Steps components is an indicator for the steps in a wizard workflow. Example below uses nested routes with Steps.</p>
|
||
|
</div>
|
||
|
<AppDemoActions />
|
||
|
</div>
|
||
|
|
||
|
<div class="content-section implementation">
|
||
|
<div class="card">
|
||
|
<Steps :model="items" aria-label="Form Steps" />
|
||
|
</div>
|
||
|
|
||
|
<NuxtPage v-slot="{ Component }" :formData="formObject" @prev-page="prevPage($event)" @next-page="nextPage($event)" @complete="complete">
|
||
|
<keep-alive>
|
||
|
<component :is="Component" />
|
||
|
</keep-alive>
|
||
|
</NuxtPage>
|
||
|
</div>
|
||
|
|
||
|
<StepsDoc />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import StepsDoc from './steps/StepsDoc';
|
||
|
|
||
|
export default {
|
||
|
data() {
|
||
|
return {
|
||
|
items: [
|
||
|
{
|
||
|
label: 'Personal',
|
||
|
to: '/steps'
|
||
|
},
|
||
|
{
|
||
|
label: 'Seat',
|
||
|
to: '/steps/seat'
|
||
|
},
|
||
|
{
|
||
|
label: 'Payment',
|
||
|
to: '/steps/payment'
|
||
|
},
|
||
|
{
|
||
|
label: 'Confirmation',
|
||
|
to: '/steps/confirmation'
|
||
|
}
|
||
|
],
|
||
|
formObject: {}
|
||
|
};
|
||
|
},
|
||
|
methods: {
|
||
|
nextPage(event) {
|
||
|
for (let field in event.formData) {
|
||
|
this.formObject[field] = event.formData[field];
|
||
|
}
|
||
|
|
||
|
this.$router.push(this.items[event.pageIndex + 1].to);
|
||
|
},
|
||
|
prevPage(event) {
|
||
|
this.$router.push(this.items[event.pageIndex - 1].to);
|
||
|
},
|
||
|
complete() {
|
||
|
this.$toast.add({ severity: 'success', summary: 'Order submitted', detail: 'Dear, ' + this.formObject.firstname + ' ' + this.formObject.lastname + ' your order completed.' });
|
||
|
}
|
||
|
},
|
||
|
components: {
|
||
|
StepsDoc: StepsDoc
|
||
|
}
|
||
|
};
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
::v-deep(b) {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
::v-deep(.p-card-body) {
|
||
|
padding: 2rem;
|
||
|
}
|
||
|
</style>
|