-
-
Notifications
You must be signed in to change notification settings - Fork 3.8k
/
Copy pathoption.d.ts
38 lines (32 loc) · 845 Bytes
/
option.d.ts
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
// Project: https://github.com/vueComponent/ant-design-vue
// Definitions by: akki-jat <https://github.com/akki-jat>
// Definitions: https://github.com/vueComponent/ant-design-vue/types
import { AntdComponent } from "../component";
export declare class Option extends AntdComponent {
/**
* Disable this option
* @default false
* @type boolean
*/
disabled: boolean;
/**
* Same usage as value. If Vue request you to set this property, you can set it to value of option, and then omit value property.
* @type string
*/
key: string;
/**
* title of Select after select this Option
* @type string
*/
title: string;
/**
* default to filter with this property
* @type string | number
*/
value: string | number;
/**
* additional class to option
* @type string
*/
class: string;
}