Skip to content

Stepper step

The stepper step represents an individual step within the stepper. It contains the content, actions, and guidance needed for that part of the process. Each FluxStepperStep helps users focus on one task at a time, making multi-step workflows feel clear and manageable.

Slots

default
The content of the step.

Snippet

vue
<template>
    <FluxStepperStep>
        <!-- Step content here -->
    </FluxStepperStep>
</template>

<script
    setup
    lang="ts">
    import { FluxStepperStep } from '@flux-ui/components';
</script>