UNPKG

krco

Version:

基于arco-design-vue的配置化表格表单组件

30 lines (29 loc) 1.02 kB
import type { TableOption } from "../table/type"; interface Props { option: TableOption; type?: string; loading?: boolean; width: number | string; } declare let __VLS_typeProps: Props; declare const __VLS_defaults: { visible: boolean; formData: {}; }; type __VLS_PublicProps = { "visible"?: typeof __VLS_defaults['visible']; "formData"?: typeof __VLS_defaults['formData']; } & typeof __VLS_typeProps; declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, { submit: (...args: any[]) => void; }, string, import("vue").PublicProps, Readonly<{ visible?: (typeof __VLS_defaults)["visible"]; formData?: (typeof __VLS_defaults)["formData"]; } & Props & { onSubmit?: ((...args: any[]) => any) | undefined; }>, { type: string; option: TableOption; loading: boolean; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}>; export default _default;