fix(Stepper): wrong item in title & description slots

Resolves #2888
This commit is contained in:
Benjamin Canac
2024-12-13 00:04:27 +01:00
parent 33fb2cad0b
commit 473194fbaf

View File

@@ -146,12 +146,12 @@ defineExpose({
<div :class="ui.wrapper({ class: props.ui?.wrapper })">
<StepperTitle :class="ui.title({ class: props.ui?.title })">
<slot name="title" :item="currentStep">
<slot name="title" :item="item">
{{ item.title }}
</slot>
</StepperTitle>
<StepperDescription :class="ui.description({ class: props.ui?.description })">
<slot name="description" :item="currentStep">
<slot name="description" :item="item">
{{ item.description }}
</slot>
</StepperDescription>