vue-admin-core
Version:
A Component Library for Vue 3
12 lines (11 loc) • 601 B
TypeScript
import { ElSelect, ElOption } from "element-plus";
export type SelectProps = typeof ElSelect & {
options?: Array<typeof ElOption>;
};
export declare const Select: import("vue").DefineComponent<any, () => any, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", import("vue").PublicProps, Readonly<any> & {
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
onChange?: ((...args: any[]) => any) | undefined;
}, {} | {
[x: string]: any;
}, {}>;
export default Select;