This commit is contained in:
2026-01-05 12:47:14 +08:00
commit 1fc846fae3
1614 changed files with 162035 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
import type { ExtractPropTypes } from 'vue'
import { commonProps, isNumber } from '../_utils'
export const stepProps = {
...commonProps,
/**
* @description 流程步骤的标题
*/
title: String,
/**
* @description 流程步骤的描述性文字(支持 html 结构)
*/
content: String,
}
export type StepProps = ExtractPropTypes<typeof stepProps>
export const stepEmits = {
clickStep: (val: number) => isNumber(val),
}
export type StepEmits = typeof stepEmits