anchor.d.ts
1.28 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Type definitions for iview 3.3.1
// Project: https://github.com/iview/iview
// Definitions by: yangdan
// Definitions: https://github.com/yangdan8/iview.git
import Vue from 'vue';
export declare class Anchor extends Vue {
/**
* 固定模式
* @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;
}
export declare class AnchorLink extends Vue {
/**
* 锚点链接
* @default
*/
href?: string;
/**
* 文字内容
* @default
*/
title?: string;
/**
* 点击滚动的额外距离
* @default 0
*/
'scroll-offset'?: number;
}