split.d.ts
1.39 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
68
// 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, { VNode } from 'vue';
export declare class Split extends Vue {
/**
* 面板位置,可以是 0~1 代表百分比,或具体数值的像素,可用 v-model 双向绑定
* @default 0.5
*/
value?: number | string;
/**
* 类型,可选值为 horizontal 或 vertical
* @default horizontal
*/
mode?: 'horizontal' | 'vertical';
/**
* 最小阈值
* @default 40px
*/
min?: number | string;
/**
* 最大阈值
* @default 40px
*/
max?: number | string;
/**
* 拖拽开始 -
* @default false
*/
$emit(eventName: 'on-move-start', []): this;
/**
* 拖拽中
*/
$emit(eventName: 'on-moving', []): this;
/**
* 拖拽结束
* @default false
*/
$emit(eventName: 'on-move-end', []): this;
/**
* slot插槽对象
*/
$slots: {
/**
* mode 为 horizontal 时可用,左边面板
* @default false
*/
left: VNode[];
/**
* mode 为 horizontal 时可用,右边面板
*/
right: VNode[];
/**
* mode 为 vertical 时可用,上边面板
*/
top: VNode[];
/**
* mode 为 vertical 时可用,下边面板
*/
bottom: VNode[];
/**
* 自定义分割拖拽节点
*/
trigger: VNode[];
}
}