ant-design-vue/components/timeline/index.jsx

16 lines
390 B
Vue
Raw Normal View History

2019-01-12 03:33:27 +00:00
import Timeline from './Timeline';
import TimelineItem from './TimelineItem';
2018-04-03 07:51:44 +00:00
2019-01-12 03:33:27 +00:00
export { TimelineProps } from './Timeline';
export { TimeLineItemProps } from './TimelineItem';
2018-04-03 07:51:44 +00:00
2019-01-12 03:33:27 +00:00
Timeline.Item = TimelineItem;
2018-04-03 07:51:44 +00:00
/* istanbul ignore next */
Timeline.install = function(app) {
app.component(Timeline.name, Timeline);
app.component(TimelineItem.name, TimelineItem);
2019-01-12 03:33:27 +00:00
};
2019-01-12 03:33:27 +00:00
export default Timeline;