Blame view

types/cell.d.ts 1.53 KB
1011bd41   yangdan8   1.update all d.ts...
1
  // Type definitions for iview 3.3.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
4a2af4f5   yangd   1.将class定义方式修改为in...
5
  import Vue, { VNode } from 'vue';
454cdd17   yangd   完成新版本3.0.0的iview全...
6
  
539e96c5   yangd   修复使用ts模式时不能按需引入组件的问题
7
  export declare class Cell 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
    /**
     * 用来标识这一项
     */
    name?: string | number;
    /**
     * 左侧标题
     */
    title?: string;
    /**
     * 标题下方的描述信息
     */
    label?: string;
    /**
     * 右侧额外内容
     */
    extra?: string;
    /**
     * 禁用该项
       * @default false
     */
    disabled?: boolean;
    /**
     * 标记该项为选中状态
       * @default false
     */
    selected?: boolean;
    /**
     * 跳转的链接,支持 vue-router 对象
     */
    to?: string | object;
    /**
     * 路由跳转时,开启 replace 将不会向 history 添加新记录
       * @default false
     */
    replace?: boolean;
    /**
     * 相当于 a 链接的 target 属性
       * @default _self
     */
    target?: '_blank' | '_self' | '_parent' | '_top';
    /**
6e16a96e   yangd   d.ts升级到对应的iview 3...
49
50
51
52
53
     * 同 vue-router append
     * @default false
     */
    append?: boolean;
    /**
454cdd17   yangd   完成新版本3.0.0的iview全...
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
     * slot插槽对象
     */
    $slots: {
      /**
       * 相当于 title
       */
      '': VNode[];
      /**
       * 标题前的 Icon
       */
      icon: VNode[];
      /**
       * 相当于 label
       */
      label: VNode[];
      /**
       * 相当于 extra
       */
      extra: VNode[];
      /**
       * 有链接时,可自定义右侧箭头
       */
      arrow: VNode[];
    }
  }
  
539e96c5   yangd   修复使用ts模式时不能按需引入组件的问题
80
  export declare class CellGroup extends Vue {
454cdd17   yangd   完成新版本3.0.0的iview全...
81
82
83
84
85
86
    /**
     * 点击单元格时触发
     * 
     */
    $emit(eventName: 'on-click', name: string): this;
  }