first commit

This commit is contained in:
lingxiao865
2026-02-10 08:05:03 +08:00
commit c5af079d8c
1094 changed files with 97530 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
/* eslint-disable */
/**
* 该文件为脚本自动生成文件,请勿随意修改。如需修改请联系 PMC
* */
import type { TdStepItemProps } from './type';
export default {
/** 步骤描述 */
content: {
type: String,
default: '' as TdStepItemProps['content'],
},
/** 步骤条自定义内容 */
extra: {
type: String,
},
/** 图标。传入 slot 代表使用插槽,其他字符串代表使用内置图标 */
icon: {
type: String,
},
/** 当前步骤的状态:默认状态(未开始)、进行中状态、完成状态、错误状态 */
status: {
type: String,
default: 'default' as TdStepItemProps['status'],
validator(val: TdStepItemProps['status']): boolean {
if (!val) return true;
return ['default', 'process', 'finish', 'error'].includes(val);
},
},
/** 标题 */
title: {
type: String,
default: '' as TdStepItemProps['title'],
},
};