@inkline/inkline
Version:
Inkline is the intuitive UI Components library that gives you a developer-friendly foundation for building high-quality, accessible, and customizable Vue.js 3 Design Systems.
53 lines (52 loc) • 1.28 kB
TypeScript
declare const _default: import("vue").DefineComponent<{
/**
* The title of the tab
* @type String
* @default
* @name title
*/
title: {
type: StringConstructor;
default: string;
};
/**
* The name of the tab, used as an identifier
* @type String
* @default uid()
* @name name
*/
name: {
type: StringConstructor;
default: () => string;
};
}, {
active: import("vue").ComputedRef<boolean>;
classes: import("vue").ComputedRef<{
'-active': boolean;
}>;
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
/**
* The title of the tab
* @type String
* @default
* @name title
*/
title: {
type: StringConstructor;
default: string;
};
/**
* The name of the tab, used as an identifier
* @type String
* @default uid()
* @name name
*/
name: {
type: StringConstructor;
default: () => string;
};
}>>, {
title: string;
name: string;
}, {}>;
export default _default;