sard-uniapp
Version:
sard-uniapp 是一套基于 Uniapp + Vue3 框架开发的兼容多端的 UI 组件库
23 lines (22 loc) • 483 B
TypeScript
import { type StyleValue } from 'vue';
import { type StepsStatus } from '../steps/common';
export interface StepProps {
rootStyle?: StyleValue;
rootClass?: string;
status?: StepsStatus;
name?: string;
description?: string;
index: number;
}
export interface StepSlots {
default?(props: {
status: StepsStatus;
}): any;
icon?(props: {
status: StepsStatus;
}): any;
}
export interface StepEmits {
}
export interface StepExpose {
}