legion-vue-core
Version:
23 lines (22 loc) • 466 B
TypeScript
export interface StepperProps {
/**
* sets the items list for the stepper
*/
items?: {
title?: string;
description?: string;
icon?: any;
}[];
/**
* sets the active key for the stepper
*/
active?: number;
/**
* sets the mode for the stepper
*/
mode?: 'horizontal' | 'vertical';
/**
* sets the position of text for the stepper
*/
textPlacement?: 'right' | 'bottom';
}