epic-designer
Version:
基于vue3的设计器,可视化开发页面表单
16 lines (15 loc) • 624 B
TypeScript
interface Option {
children?: Option[];
label: string;
value: string;
}
type __VLS_Props = {
modelValue: Option[];
tree?: boolean;
};
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:modelValue": (...args: any[]) => void;
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
export default _default;