vue3-steppy
Version:
A customizable Vue 3 Stepper plugin
28 lines (24 loc) • 597 B
TypeScript
declare module "@/components/Vue3Steppy.vue" {
import { DefineComponent } from "vue";
export interface SteppyProps {
step: number;
tabs: Array<{
title: string;
description?: string;
iconSuccess?: string;
isValid: boolean;
}>;
finalize: () => void;
backText: string;
nextText: string;
doneText: string;
loading: boolean;
primaryColor1: string;
primaryColor2: string;
backgroundColor: string;
circleSize: number;
contentMarginTop: number;
}
const Steppy: DefineComponent<SteppyProps>;
export default Steppy;
}