Closed openhappyya closed 9 months ago
Traveler, this is my quick css workaround
::v-deep .v-stepper-root > :first-child::after {
content: 'Submit Form';
display: block;
padding: 5px;
}
::v-deep .v-stepper-root > :nth-child(2)::after {
content: 'OTP';
display: block;
padding: 5px;
}
::v-deep .v-stepper-root > :nth-child(3)::after {
content: 'Result';
display: block;
padding: 5px;
}
The docs are missing that piece of information, sorry about that.
You have to use the step<n>
slots, see this example from the docs source: https://github.com/adi518/vue-stepper/blob/master/docs/src/containers/Docs.vue#L32
there is no tip in the using docx.