mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-04 04:08:34 +08:00
12 lines
342 B
TypeScript
12 lines
342 B
TypeScript
import { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
import TimelineItem from '../timeline/src/item.vue'
|
|
|
|
TimelineItem.install = (app: App): void => {
|
|
app.component(TimelineItem.name, TimelineItem)
|
|
}
|
|
|
|
const _TimelineItem: SFCWithInstall<typeof TimelineItem> = TimelineItem
|
|
|
|
export default _TimelineItem
|