transfer.d.ts
1.96 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
69
70
71
72
73
74
75
76
77
78
79
80
// 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 Transfer extends Vue {
/**
* 数据源,其中的数据将会被渲染到左边一栏中,targetKeys 中指定的除外。
* @default []
*/
data?: object[];
/**
* 显示在右侧框数据的key集合
* @default []
*/
targetKeys?: string[];
/**
* 每行数据渲染函数,该函数的入参为 data 中的项
* value?: 默认显示label,没有时显示key
*/
'render-format'?: (value?: string) => void;
/**
* 设置哪些项应该被选中
* @default []
*/
'selected-keys'?: string[];
/**
* 两个穿梭框的自定义样式
* @default {}
*/
'list-style'?: object;
/**
* 标题集合,顺序从左至右 Array
* @default ['源列表', '目的列表']
*/
titles?: string[];
/**
* 操作文案集合,顺序从上至下
* @default []
*/
operations?: object[];
/**
* 是否显示搜索框
* @default false
*/
filterable?: object[];
/**
* 搜索框的占位
* @default 请输入搜索内容
*/
'filter-placeholder'?: string;
/**
* 自定义搜索函数,入参为 data 和 query,data 为项,query 为当前输入的搜索词
* 默认搜索label
*/
'filter-method'?: (value?: string) => void;
/**
* 当列表为空时显示的内容
* @default 列表为空
*/
'not-found-text'?: string;
/**
* 选项在两栏之间转移时的回调函数
*/
$emit(eventName: 'on-change', targetKeys: string[], direction: string, moveKeys: string[]): this;
/**
* 选项在两栏之间转移时的回调函数
*/
$emit(eventName: 'on-selected-change', sourceSelectedKeys: string[], targetSelectedKeys: string[]): this;
/**
* slot插槽对象
*/
$slots: {
/**
* 自定义底部内容
*/
'': VNode[];
};
}