@tuoyuan/web-plus
Version:
基于arco-design-vue的配置化表格表单组件
28 lines (27 loc) • 909 B
TypeScript
declare let __VLS_typeProps: {
mode?: string;
height?: number;
placeholder?: string;
};
declare const __VLS_defaults: {
modelValue: string;
};
type __VLS_PublicProps = {
modelValue?: typeof __VLS_defaults['modelValue'];
} & typeof __VLS_typeProps;
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
'update:modelValue': (modelValue: string) => any;
}, string, import("vue").PublicProps, Readonly<{
modelValue?: (typeof __VLS_defaults)["modelValue"];
} & {
mode?: string;
height?: number;
placeholder?: string;
} & {
"onUpdate:modelValue"?: ((modelValue: string) => any) | undefined;
}>, {
mode: string;
placeholder: string;
height: number;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}>;
export default _default;