• Introduction
  • Getting Started
  • Vue 2 End of Support
  • Native Components
    • Animation
    • Buttons
    • Chartsupdated
    • Conversational UInew
    • Data Query
    • Data Tools
    • Date Inputs
    • Date Math
    • Dialogs
    • Drawing
    • Dropdownsupdated
    • Editor
    • Excel Export
    • File Saver
    • Form
    • Gauges
    • Grid
    • Icons
    • Indicators
    • Inputs
    • Labels
    • Layoutupdated
      • Overview
      • Getting Started
      • ActionSheetnew
      • AppBar
      • Avatar
      • BottomNavigation
      • Card
      • ContextMenu
      • Drawer
      • ExpansionPanelnew
      • GridLayoutnew
      • Menu
      • PanelBar
      • Splitter
      • StackLayoutnew
      • Stepper
      • TabStrip
      • TileLayoutupdated
      • Wizard
      • Globalization
      • API
    • ListBox
    • ListView
    • Notification
    • PDF Processing
    • Popup
    • Progress Bars
    • Scheduler
    • ScrollView
    • Tooltip
    • TreeList
    • TreeView
    • Upload
  • Wrapper Components
  • Sample Applications
  • Styling & Themes
  • Common Features
  • Project Setup
  • Knowledge Base
  • Changelog
  • FAQ
  • Troubleshooting
New to Kendo UI for Vue? Start a free 30-day trial

StepperProps

Represents the props of the Kendo UI for Vue Stepper component.

NameTypeDefaultDescription

animationDuration?

number | boolean

Sets the duration of the Stepper animation. Defaults to 400ms.

className?

string

Specifies a list of CSS classes that will be added to the Stepper.

dir?

string

Represents the dir HTML attribute. This is used to switch from LTR to RTL.

disabled?

boolean

Disables the whole Stepper.

errorIcon?

string

Specifies a custom icon that will be rendered inside the step for invalid steps.

item?

any

Overrides the default component responsible for visualizing a single item (see example).

The default Component is: Step.

items

StepProps[]

The collection of steps that will be rendered in the Stepper (see example).

linear?

boolean

Specifies the linear flow of the Stepper. (see example).

mode?

string

Specifies the display mode of the Stepper (see example).

  • The possible values are:
  • (Default) steps. Render step indicator and optional label.
  • labels. Render labels only.

onChange?

(event: StepperChangeEvent) => void

The event handler that will be fired when the value is changed.

onFocus?

(event: StepperFocusEvent) => void

The event handler that will be fired when a Step is focused.

orientation?

string

Specifies the orientation of the Stepper (see example).

The possible values are:

  • (Default) horizontal
  • vertical

progress

number

Specifies the current progress of the ProgressBar inside the Stepper. If not defined it is equal to the current value.

progressTotal

number

The maximum value of the ProgressBar inside the Stepper. If not defined it is equal to the number of steps defined.

successIcon?

string

Specifies a custom icon that will be rendered inside the step for valid steps.

value

number

Specifies the index of the selected Step.