Type file for ColorPicker
parent
5c3fe243c3
commit
11ff9e7a5c
|
@ -1,5 +1,13 @@
|
||||||
import Vue, { VNode } from 'vue';
|
import Vue, { VNode } from 'vue';
|
||||||
|
|
||||||
export declare class ColorPicker extends Vue {
|
export declare class ColorPicker extends Vue {
|
||||||
value: any;
|
value?: any;
|
||||||
|
defaultColor?: any;
|
||||||
|
inline?: boolean;
|
||||||
|
format?: string;
|
||||||
|
disabled?: boolean;
|
||||||
|
tabindex?: string;
|
||||||
|
autoZIndex?: boolean;
|
||||||
|
baseZIndex?: number;
|
||||||
|
$emit(eventName: 'input', value: any): this;
|
||||||
}
|
}
|
Loading…
Reference in New Issue