@qvant/qui-max
Version:
A Vue 3 Design system for Web.
38 lines (37 loc) • 1.32 kB
TypeScript
import type { DefineComponent, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes } from 'vue';
import type { SFCWithInstall } from '../../../types/helpers';
export declare const QTabs: SFCWithInstall<DefineComponent<{
modelValue: {
type: StringConstructor;
default: null;
};
tabWidth: {
type: (StringConstructor | NumberConstructor)[];
default: null;
};
disabled: {
type: BooleanConstructor;
default: boolean;
};
}, void, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("update:modelValue" | "change")[], "update:modelValue" | "change", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes<{
modelValue: {
type: StringConstructor;
default: null;
};
tabWidth: {
type: (StringConstructor | NumberConstructor)[];
default: null;
};
disabled: {
type: BooleanConstructor;
default: boolean;
};
}>> & {
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
onChange?: ((...args: any[]) => any) | undefined;
}, {
disabled: boolean;
modelValue: string;
tabWidth: string | number;
}>>;
export type { QTabsProps, QTabsProvider, QTabsInstance } from './src/types';