@volverjs/ui-vue
Version:
@volverjs/ui-vue is a lightweight Vue 3 component library to accompany @volverjs/style.
20 lines (19 loc) • 467 B
TypeScript
import type { NavItemTab } from '@/types/nav';
export declare const VvTabProps: {
navModifiers: {
type: PropType<string | string[]>;
};
modelValue: {
type: StringConstructor;
default: string;
};
items: {
type: PropType<NavItemTab[]>;
default: () => never[];
};
modifiers: {
type: PropType<string | string[]>;
default: undefined;
};
};
export declare const VvTabEvents: string[];