Skip to content

Form Summary Item ​

ue-form-summary-item renders a single step's summary in the stepper form review panel. It displays a numbered step label, the step title, and a formatted view of the step's model values.

Usage ​

This component is rendered automatically by ue-stepper-form in the final "Preview & Summary" step. You can also override the default slot for a custom summary:

html
<ue-stepper-form ...>
  <template #summary-form-1="{ index, title, model }">
    <ue-form-summary-item :index="index" :title="title" :model="model" />
  </template>
</ue-stepper-form>

Props ​

PropTypeRequiredDescription
indexNumberyesZero-based step index. Displayed as index + 1
titleStringyesStep title shown below the step number
modelObjectyesStep form model values to display. Each key-value pair is rendered as a chip or labelled text

Behaviour ​

  • Each key in model is iterated. If the value is an array, the first element is used as a label and subsequent elements are displayed inline.
  • Non-array primitive values are rendered as read-only outlined v-btn chips.
  • The step number badge uses a 25%-border-radius avatar styled in the primary colour.