You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
910 B
27 lines
910 B
import type { App, Plugin } from 'vue';
|
|
import Breadcrumb from './Breadcrumb';
|
|
import BreadcrumbItem from './BreadcrumbItem';
|
|
import BreadcrumbSeparator from './BreadcrumbSeparator';
|
|
|
|
export type { BreadcrumbProps } from './Breadcrumb';
|
|
export type { BreadcrumbItemProps } from './BreadcrumbItem';
|
|
export type { BreadcrumbSeparatorProps } from './BreadcrumbSeparator';
|
|
|
|
Breadcrumb.Item = BreadcrumbItem;
|
|
Breadcrumb.Separator = BreadcrumbSeparator;
|
|
|
|
/* istanbul ignore next */
|
|
Breadcrumb.install = function (app: App) {
|
|
app.component(Breadcrumb.name, Breadcrumb);
|
|
app.component(BreadcrumbItem.name, BreadcrumbItem);
|
|
app.component(BreadcrumbSeparator.name, BreadcrumbSeparator);
|
|
return app;
|
|
};
|
|
|
|
export { BreadcrumbItem, BreadcrumbSeparator };
|
|
export default Breadcrumb as typeof Breadcrumb &
|
|
Plugin & {
|
|
readonly Item: typeof BreadcrumbItem;
|
|
readonly Separator: typeof BreadcrumbSeparator;
|
|
};
|