epic-designer
Version:
基于vue3的设计器,可视化开发页面表单
37 lines (36 loc) • 1.29 kB
TypeScript
import { ComponentSchema } from '../../../../types/src/index';
interface EpNodeProps {
componentSchema: ComponentSchema;
isProperty?: boolean;
modelValue?: any;
ruleField?: string[];
showHiddenItems?: boolean;
}
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
'edit-node'?(_: {}): any;
};
refs: {};
rootEl: any;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<EpNodeProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
change: (...args: any[]) => void;
"update:modelValue": (...args: any[]) => void;
}, string, import('vue').PublicProps, Readonly<EpNodeProps> & Readonly<{
onChange?: ((...args: any[]) => any) | undefined;
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
}>, {
modelValue: any;
isProperty: boolean;
ruleField: string[];
showHiddenItems: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};