Blame view

types/anchor.d.ts 1.3 KB
b1b1ea63   yangd   更新d.ts到3.1.0,修复d....
1
  // Type definitions for iview 3.1.0
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 Anchor 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
    /**
     * 固定模式
     * @default true
     */
    affix?: boolean;
    /**
     * 距离窗口顶部达到指定偏移量后触发
     * @default 0
     */
    'offset-top'?: number;
    /**
     * 距离窗口底部达到指定偏移量后触发
     */
    'offset-bottom'?: number;
    /**
     * 锚点区域边界,单位:px
     * @default 5
     */
    bounds?: number;
    /**
     * 点击滚动的额外距离
     * @default 0
     */
    'scroll-offset'?: number;
    /**
     * 指定滚动的容器
     */
    container?: string | HTMLElement;
    /**
     * 是否显示小圆点
     * @default false
     */
    'show-ink'?: boolean;
    /**
     * 点击锚点时触发,返回链接
     */
    $emit(eventName: 'on-select', href: string): this;
    /**
     * 链接改变时触发,返回新链接和旧链接	
     */
    $emit(eventName: 'on-change', []): this;
  }
  
4a2af4f5   yangd   1.将class定义方式修改为in...
51
  export declare interface AnchorLink extends Vue {
454cdd17   yangd   完成新版本3.0.0的iview全...
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
    /**
     * 锚点链接
     * @default 
     */
    href?: string;
    /**
     * 文字内容
     * @default 
     */
    title?: string;
    /**
     * 点击滚动的额外距离
     * @default 0
     */
    'scroll-offset'?: number;
  }