UNPKG

element-plus

Version:

A Component Library for Vue3.0

12 lines (8 loc) 301 B
import { App } from 'vue' import type { SFCWithInstall } from '@element-plus/utils/types' import Timeline from './src/index.vue' Timeline.install = (app: App): void => { app.component(Timeline.name, Timeline) } const _Timeline: SFCWithInstall<typeof Timeline> = Timeline export default _Timeline