@minto-ai/mt-ui
Version:
UI组件库
49 lines (48 loc) • 1.75 kB
TypeScript
declare function __VLS_template(): {
attrs: Partial<{}>;
slots: {
default?(_: {}): any;
};
refs: {
tabsRef: HTMLDivElement;
};
rootEl: HTMLDivElement;
};
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
readonly modelValue: {
readonly type: import('vue').PropType<number | string>;
readonly default: 0;
};
readonly type: {
readonly type: import('vue').PropType<"button" | "card" | "line">;
readonly default: "card";
};
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
"update:modelValue": (args_0: string | number) => any;
change: (args_0: string | number) => any;
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
readonly modelValue: {
readonly type: import('vue').PropType<number | string>;
readonly default: 0;
};
readonly type: {
readonly type: import('vue').PropType<"button" | "card" | "line">;
readonly default: "card";
};
}>> & Readonly<{
"onUpdate:modelValue"?: ((args_0: string | number) => any) | undefined;
onChange?: ((args_0: string | number) => any) | undefined;
}>, {
readonly type: "button" | "line" | "card";
readonly modelValue: string | number;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
tabsRef: HTMLDivElement;
}, HTMLDivElement>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};