@coreui/vue
Version:
UI Components Library for Vue.js
51 lines (50 loc) • 1.62 kB
TypeScript
declare const CLink: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
/**
* Toggle the active state for the component.
*/
active: BooleanConstructor;
/**
* Component used for the root node. Either a string to use a HTML element or a component.
*/
as: {
type: StringConstructor;
default: string;
};
/**
* Toggle the disabled state for the component.
*/
disabled: BooleanConstructor;
/**
* The href attribute specifies the URL of the page the link goes to.
*/
href: StringConstructor;
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
[key: string]: any;
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
/**
* Toggle the active state for the component.
*/
active: BooleanConstructor;
/**
* Component used for the root node. Either a string to use a HTML element or a component.
*/
as: {
type: StringConstructor;
default: string;
};
/**
* Toggle the disabled state for the component.
*/
disabled: BooleanConstructor;
/**
* The href attribute specifies the URL of the page the link goes to.
*/
href: StringConstructor;
}>> & Readonly<{
onClick?: ((...args: any[]) => any) | undefined;
}>, {
disabled: boolean;
as: string;
active: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export { CLink };