mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 12:48:04 +08:00
6503e55277
* refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils): remove * refactor(utils): rename * refactor(utils): move EVENT_CODE to constants * refactor: remove generic
13 lines
380 B
TypeScript
13 lines
380 B
TypeScript
import { withInstall, withNoopInstall } from '@element-plus/utils'
|
|
import Timeline from './src/timeline'
|
|
import TimelineItem from './src/timeline-item.vue'
|
|
|
|
export const ElTimeline = withInstall(Timeline, {
|
|
TimelineItem,
|
|
})
|
|
export default ElTimeline
|
|
export const ElTimelineItem = withNoopInstall(TimelineItem)
|
|
|
|
export * from './src/timeline'
|
|
export * from './src/timeline-item'
|