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.
15 lines
362 B
15 lines
362 B
import Breadcrumb from './Breadcrumb';
|
|
import BreadcrumbItem from './BreadcrumbItem';
|
|
import Base from '../base';
|
|
|
|
Breadcrumb.Item = BreadcrumbItem;
|
|
|
|
/* istanbul ignore next */
|
|
Breadcrumb.install = function(Vue) {
|
|
Vue.use(Base);
|
|
Vue.component(Breadcrumb.name, Breadcrumb);
|
|
Vue.component(BreadcrumbItem.name, BreadcrumbItem);
|
|
};
|
|
|
|
export default Breadcrumb;
|