Blame view

types/scroll.d.ts 919 Bytes
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
  
4a2af4f5   yangd   1.将class定义方式修改为in...
7
  export declare interface Scroll 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
    /**
     * 滚动区域的高度,单位像素
     * @default 300
     */
    height?: string | number;
    /**
     * 加载中的文案
     * @default 加载中
     */
    'loading-text'?: string;
    /**
     * 滚动至顶部时触发,需返回Promise
     */
    'on-reach-top'?: () => void;
    /**
     * 滚动至底部时触发,需返回Promise
     */
    'on-reach-bottom'?: () => void;
    /**
     * 滚动至顶部或底部时触发,需返回Promise
     */
    'on-reach-edge'?: () => void;
    /**
     * 从边缘到触发回调的距离。如果是负的,回调将在到达边缘之前触发。值最好在 24 以下。
     * @default [20, 20]
     */
    'distance-to-edge'?: number | number[];
  }