@pit-front-end/components
Version:
湖南创智艾泰克科技有限公司
98 lines (97 loc) • 3 kB
TypeScript
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
default?(_: {}): any;
footer?(_: {}): any;
};
refs: {};
rootEl: any;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<{
readonly modelValue: {
readonly type: BooleanConstructor;
readonly default: false;
};
readonly title: {
readonly type: StringConstructor;
readonly default: "标题";
};
readonly width: {
readonly type: [NumberConstructor, StringConstructor];
readonly default: "35%";
};
readonly fullscreen: {
readonly type: BooleanConstructor;
readonly default: false;
};
readonly beforeClose: {
readonly type: import('vue').PropType<import('./dialog').DialogBeforeCloseFn>;
};
readonly draggable: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly modalClass: {
readonly type: StringConstructor;
readonly default: "form-base-dialog";
};
readonly zIndex: {
readonly type: NumberConstructor;
};
readonly top: {
readonly type: StringConstructor;
};
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:modelValue": (value: boolean) => void;
}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
readonly modelValue: {
readonly type: BooleanConstructor;
readonly default: false;
};
readonly title: {
readonly type: StringConstructor;
readonly default: "标题";
};
readonly width: {
readonly type: [NumberConstructor, StringConstructor];
readonly default: "35%";
};
readonly fullscreen: {
readonly type: BooleanConstructor;
readonly default: false;
};
readonly beforeClose: {
readonly type: import('vue').PropType<import('./dialog').DialogBeforeCloseFn>;
};
readonly draggable: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly modalClass: {
readonly type: StringConstructor;
readonly default: "form-base-dialog";
};
readonly zIndex: {
readonly type: NumberConstructor;
};
readonly top: {
readonly type: StringConstructor;
};
}>> & {
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
}, {
readonly modelValue: boolean;
readonly title: string;
readonly width: string | number;
readonly fullscreen: boolean;
readonly draggable: boolean;
readonly modalClass: string;
}, {}>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};