vuetning
Version:
<p align="center"> <img width="160"src="https://s3.amazonaws.com/arcthos.com/vuetning/logo.svg"> </p>
41 lines (40 loc) • 1.06 kB
TypeScript
import { type PropType } from "vue";
import type { Tab } from "./tab";
declare const _default: import("vue").DefineComponent<{
/**
* Active tab name.
*/
active: StringConstructor;
tabs: {
type: PropType<Tab[]>;
default: () => Tab[];
};
large: BooleanConstructor;
medium: BooleanConstructor;
noContent: BooleanConstructor;
}, unknown, unknown, {
/**
* The CSS class names for the tabs.
*/
tabsClassNames(): string;
}, {
handleClickTab(tabName: string): void;
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
/**
* Active tab name.
*/
active: StringConstructor;
tabs: {
type: PropType<Tab[]>;
default: () => Tab[];
};
large: BooleanConstructor;
medium: BooleanConstructor;
noContent: BooleanConstructor;
}>>, {
large: boolean;
medium: boolean;
tabs: Tab[];
noContent: boolean;
}, {}>;
export default _default;