arco-crud-plus
Version:
基于arco-design-vue的配置化表格表单组件
45 lines (44 loc) • 1.49 kB
TypeScript
import { Column, Option } from "./type";
declare let __VLS_typeProps: {
option: Option;
item: Column;
slots: any;
loading: any;
dicData: any;
defaultOption: any;
isDisabled: Function;
};
type __VLS_PublicProps = {
modelValue?: any;
} & typeof __VLS_typeProps;
declare var __VLS_inheritedAttrs: {};
declare const __VLS_templateResult: {
slots: Partial<Record<string, (_: {}) => any>> & Partial<Record<string, (_: {}) => any>> & Partial<Record<string, (_: {}) => any>> & Partial<Record<string, (_: {
item: Column;
}) => any>>;
refs: {};
attrs: Partial<typeof __VLS_inheritedAttrs>;
};
type __VLS_Slots = typeof __VLS_templateResult['slots'];
declare const __VLS_component: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
'update:modelValue': (modelValue: any) => any;
}, string, import("vue").PublicProps, Readonly<{
modelValue?: any;
} & {
option: Option;
item: Column;
slots: any;
loading: any;
dicData: any;
defaultOption: any;
isDisabled: Function;
} & {
"onUpdate:modelValue"?: ((modelValue: any) => any) | undefined;
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_Slots>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};