mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 20:58:22 +08:00
14 lines
371 B
TypeScript
14 lines
371 B
TypeScript
import TimeSelect from './src/time-select.vue'
|
|
|
|
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
|
|
TimeSelect.install = (app: App): void => {
|
|
app.component(TimeSelect.name, TimeSelect)
|
|
}
|
|
|
|
const _TimeSelect = TimeSelect as SFCWithInstall<typeof TimeSelect>
|
|
|
|
export default _TimeSelect
|
|
export const ElTimeSelect = _TimeSelect
|