Blame view

types/button.d.ts 2.04 KB
414730dd   yangd   完成d.ts定义的优化
1
  // Type definitions for iview 3.0.1
454cdd17   yangd   完成新版本3.0.0的iview全...
2
3
4
  // Project: https://github.com/iview/iview
  // Definitions by: yangdan
  // Definitions: https://github.com/yangdan8/iview.git
438e24d7   yangd   去掉不需要用到的导出VNode
5
  import Vue from 'vue';
454cdd17   yangd   完成新版本3.0.0的iview全...
6
  
414730dd   yangd   完成d.ts定义的优化
7
  export declare class Button extends Vue {
454cdd17   yangd   完成新版本3.0.0的iview全...
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
    /**
     * 按钮类型,可选值为 default、primary、dashed、text、info、success、warning、error或者不设置
     * @default default
     */
    type?: '' | 'default' | 'primary' | 'dashed' | 'text' | 'info' | 'success' | 'warning' | 'error';
    /**
     * 幽灵属性,使按钮背景透明
     * @default false
     */
    ghost?: boolean;
    /**
     * 按钮大小,可选值为large、small、default或者不设置
     * @default default
     */
    size?: '' | 'large' | 'small' | 'default';
    /**
     * 按钮形状,可选值为circle或者不设置
     */
    shape?: '' | 'circle';
    /**
     * 开启后,按钮的长度为 100%
     * @default false
     */
    long?: boolean;
    /**
     * 设置button原生的type,可选值为button、submit、reset
     * @default button
     */
    'html-type'?: 'button' | 'submit' | 'reset';
    /**
     * 设置按钮为禁用状态
     * @default false
     */
    disabled?: boolean;
    /**
     * 设置按钮为加载中状态
     * @default false
     */
    loading?: boolean;
    /**
     * 设置按钮的图标类型
     */
    icon?: string;
    /**
     * 设置按钮的自定义图标
     */
    'custom-icon'?: string;
    /**
     * 跳转的链接,支持 vue-router 对象
     */
    to?: string | object;
    /**
     * 路由跳转时,开启 replace 将不会向 history 添加新记录
     * @default false
     */
    replace?: boolean;
    /**
     * 相当于 a 链接的 target 属性
     * @default _self
     */
    target?: '_blank' | '_self' | '_parent' | '_top';
  }
  
414730dd   yangd   完成d.ts定义的优化
71
  export declare class ButtonGroup extends Vue {
454cdd17   yangd   完成新版本3.0.0的iview全...
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
    /**
     * 按钮组合大小,可选值为large、small、default或者不设置
     * @default default
     */
    size?: 'large' | 'small' | 'default';
    /**
     * 按钮组合形状,可选值为circle或者不设置
     */
    shape?: '' | 'circle';
    /**
     * 是否纵向排列按钮组
     * @default false
     */
    vertical?: boolean;
  }