-
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
42
43
44
45
46
47
48
import { AllowedComponentProps, VNodeProps } from './_common'
 
 
declare interface StepsProps {
  /**
   * 方向
   * @default "row"
   */
  direction?: 'row' | 'column'
  /**
   * 设置当前处于第几步
   * @default 0
   */
  current?: number | string
  /**
   * 激活状态颜色
   * @default "#3c9cff"
   */
  activeColor?: string
  /**
   * 未激活状态颜色
   * @default "#969799"
   */
  inactiveColor?: string
  /**
   * 激活状态的图标
   */
  activeIcon?: string
  /**
   * 未激活状态图标
   */
  inactiveIcon?: string
  /**
   * 是否显示点类型
   * @default false
   */
  dot?: boolean
}
 
declare interface _Steps {
  new (): {
    $props: AllowedComponentProps &
      VNodeProps &
      StepsProps
  }
}
 
export declare const Steps: _Steps