element-plus/packages/time-select/index.ts

12 lines
323 B
TypeScript
Raw Normal View History

import { App } from 'vue'
import type { SFCWithInstall } from '@element-plus/utils/types'
import TimeSelect from './src/time-select.vue'
2020-10-29 17:28:26 +08:00
TimeSelect.install = (app: App): void => {
app.component(TimeSelect.name, TimeSelect)
}
const _TimeSelect: SFCWithInstall<typeof TimeSelect> = TimeSelect
export default _TimeSelect