• 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

Stepper

Represents the Kendo UI for Vue Stepper component.

<template>
   <Stepper :value="value" @change="handleChange" :items="items" />
</template>

<script>
import {
 Stepper
    } from '@progress/kendo-vue-layout';
export default {
    components: {
       Stepper
    },
    data () {
      return {
        value: 0,
        items: [
          {
            label: "Cart",
            icon: "cart",
          },
          {
            label: "Delivery Address",
            icon: "marker-pin-target",
          },
          {
            label: "Payment Method",
            icon: "dollar",
          },
          {
            label: "Preview",
            icon: "preview",
            optional: true,
          },
          {
            label: "Finish Order",
            icon: "track-changes-accept",
          },
        ]
      }
    },
    methods: {
      handleChange (e) {
        this.value = e.value;
      }
    }
};
</script>

In this article

Not finding the help you need?