mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
55afacad18
fix #56
8 lines
236 B
TypeScript
8 lines
236 B
TypeScript
import { App } from 'vue'
|
|
import TimeLine from './src/index.vue'
|
|
import TimeLineItem from './src/item.vue'
|
|
export default (app: App): void => {
|
|
app.component(TimeLine.name, TimeLine)
|
|
app.component(TimeLineItem.name, TimeLineItem)
|
|
}
|