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.
16 lines
482 B
16 lines
482 B
import Breadcrumb from './Breadcrumb';
|
|
import BreadcrumbItem from './BreadcrumbItem';
|
|
import BreadcrumbSeparator from './BreadcrumbSeparator';
|
|
|
|
Breadcrumb.Item = BreadcrumbItem;
|
|
Breadcrumb.Separator = BreadcrumbSeparator;
|
|
|
|
/* istanbul ignore next */
|
|
Breadcrumb.install = function(app) {
|
|
app.component(Breadcrumb.name, Breadcrumb);
|
|
app.component(BreadcrumbItem.name, BreadcrumbItem);
|
|
app.component(BreadcrumbSeparator.name, BreadcrumbSeparator);
|
|
};
|
|
|
|
export default Breadcrumb;
|