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

12 lines
323 B
TypeScript

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