comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
20 lines (18 loc) • 689 B
TypeScript
import { PropType, ExtractPropTypes } from 'vue';
export declare const tabsProps: {
readonly modelValue: PropType<string | number>;
readonly type: {
readonly type: PropType<"line" | "card" | "arc">;
readonly default: "line";
};
readonly color: StringConstructor;
readonly onlyTab: BooleanConstructor;
readonly closable: BooleanConstructor;
};
export type TabsProps = ExtractPropTypes<typeof tabsProps>;
export declare const tabsEmits: {
'update:modelValue': (value: string | number) => boolean;
change: (value: string | number) => boolean;
'tab-remove': (value: string | number) => boolean;
};
export type TabsEmits = typeof tabsEmits;