vue-admin-core
Version:
A Component Library for Vue 3
83 lines (82 loc) • 2.56 kB
TypeScript
export declare const VacMsgEditor: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
modelValue: {
type: StringConstructor;
default: string;
};
options: {
type: import("vue").PropType<{
label: string;
value: string;
}[]>;
default: () => never[];
};
placeholder: {
type: StringConstructor;
};
disabled: {
type: BooleanConstructor;
};
readOnly: {
type: BooleanConstructor;
};
prefix: {
type: StringConstructor;
default: string;
};
suffix: {
type: StringConstructor;
default: string;
};
}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
[key: string]: any;
}>, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("created" | "destroyed" | "blur" | "change" | "focus" | "maxLength" | "update:modelValue" | "customAlert" | "customPaste")[], "created" | "destroyed" | "blur" | "change" | "focus" | "maxLength" | "update:modelValue" | "customAlert" | "customPaste", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
modelValue: {
type: StringConstructor;
default: string;
};
options: {
type: import("vue").PropType<{
label: string;
value: string;
}[]>;
default: () => never[];
};
placeholder: {
type: StringConstructor;
};
disabled: {
type: BooleanConstructor;
};
readOnly: {
type: BooleanConstructor;
};
prefix: {
type: StringConstructor;
default: string;
};
suffix: {
type: StringConstructor;
default: string;
};
}>> & {
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
onBlur?: ((...args: any[]) => any) | undefined;
onChange?: ((...args: any[]) => any) | undefined;
onFocus?: ((...args: any[]) => any) | undefined;
onCreated?: ((...args: any[]) => any) | undefined;
onDestroyed?: ((...args: any[]) => any) | undefined;
onMaxLength?: ((...args: any[]) => any) | undefined;
onCustomAlert?: ((...args: any[]) => any) | undefined;
onCustomPaste?: ((...args: any[]) => any) | undefined;
}, {
modelValue: string;
disabled: boolean;
readOnly: boolean;
options: {
label: string;
value: string;
}[];
prefix: string;
suffix: string;
}, {}>> & Record<string, any>;
export default VacMsgEditor;