@tuoyuan/web-plus
Version:
基于arco-design-vue的配置化表格表单组件
38 lines (37 loc) • 1.16 kB
TypeScript
interface Props {
option: any;
loading?: boolean;
onText?: string;
cancelText?: string;
title?: string;
footer?: boolean;
default?: any;
cancelBtn?: boolean;
maskClosable?: boolean;
}
declare let __VLS_typeProps: Props;
declare const __VLS_defaults: {
visible: boolean;
};
type __VLS_PublicProps = {
"visible"?: typeof __VLS_defaults['visible'];
} & typeof __VLS_typeProps;
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
close: (...args: any[]) => void;
submit: (...args: any[]) => void;
}, string, import("vue").PublicProps, Readonly<{
visible?: (typeof __VLS_defaults)["visible"];
} & Props & {
onClose?: ((...args: any[]) => any) | undefined;
onSubmit?: ((...args: any[]) => any) | undefined;
}>, {
title: string;
option: any;
loading: boolean;
onText: string;
cancelText: string;
footer: boolean;
cancelBtn: boolean;
maskClosable: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}>;
export default _default;