.flex.flex-col.gap-y-6.justify-between(style="height: 500px")
.flex.flex-col.gap-y-6
span.font-bold.text-xl Договор
.flex.self-center
base-stepper(
:steps="steps",
:currentStep="currentStep"
)
component(v-bind:is="currentTabComponent")
.flex.justify-between
.flex
base-button(
:size="40",
@click="prevStep",
v-if="currentStep !== 0",
outlined,
) Назад
.flex
base-button(
:size="40",
@click="nextStep",
v-if="currentStep < steps.length-1",
) Далее
base-button(
:size="40",
@click="finish",
v-if="currentStep === steps.length-1"
) Завершить