-
zhangwei
2025-03-05 16213c0f85aa3ac8317797bf4a05fd12940e16d3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
import { AllowedComponentProps, VNodeProps } from './_common'
 
 
declare interface StepsItemProps {
  /**
   * 标题文字
   */
  title?: string
  /**
   * 描述文本
   */
  current?: string
  /**
   * 图标大小
   * @default 17
   */
  iconSize?: string | number
  /**
   * 当前步骤是否处于失败状态
   * @default false
   */
  error?: boolean
}
 
declare interface StepsItemSlots {
  /**
   * 自定步骤状态内容
   */
  ['default']?: () => any
}
 
declare interface _StepsItem {
  new (): {
    $props: AllowedComponentProps &
      VNodeProps &
      StepsItemProps
    $slots: StepsItemSlots
  }
}
 
export declare const StepsItem: _StepsItem