@coreui/vue
Version:
UI Components Library for Vue.js
56 lines (55 loc) • 1.62 kB
TypeScript
import { Component, PropType } from 'vue';
declare const CSidebarNav: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
/**
* Component used for the root node. Either a string to use a HTML element or a component.
*/
as: {
type: PropType<string | Component>;
default: string;
};
/**
* Make navigation more compact by cutting link padding in half.
*
* @since 5.9.0
*/
compact: BooleanConstructor;
/**
* Sets the navigation variant.
*
* @since 5.9.0
*/
variant: {
type: PropType<"tree">;
default: undefined;
};
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
[key: string]: any;
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
/**
* Component used for the root node. Either a string to use a HTML element or a component.
*/
as: {
type: PropType<string | Component>;
default: string;
};
/**
* Make navigation more compact by cutting link padding in half.
*
* @since 5.9.0
*/
compact: BooleanConstructor;
/**
* Sets the navigation variant.
*
* @since 5.9.0
*/
variant: {
type: PropType<"tree">;
default: undefined;
};
}>> & Readonly<{}>, {
variant: "tree";
as: string | Component;
compact: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
export { CSidebarNav };