En construcciónNumori se está construyendo en abierto. Todavía no hay nada en venta y la mayoría de las aplicaciones están sin terminar.Ver qué está listo

Contenido

A row of dots marking progress through a fixed number of steps. Clicking a dot selects that step.

Ejemplos

Basic

Four steps with buttons to move between them.

<div class="flex flex-col items-center gap-4">
  <UiStepper v-model="state.step" :steps="4" />
  <div class="flex gap-2">
    <UiButton size="sm" variant="outline" @click="state.step = Math.max(1, (state.step || 1) - 1)">Back</UiButton>
    <UiButton size="sm" @click="state.step = Math.min(4, (state.step || 1) + 1)">Next</UiButton>
  </div>
</div>

Props

NombreTipoPor defectoDescripción
modelValuenumber1The active step (v-model).
stepsobligatorionumberTotal number of steps.

Eventos

EventoDatosDescripción
update:modelValuenumberEmitted with the clicked step index.