2020-10-04 19:57:49 +08:00
|
|
|
import TimeSelect from './src/time-select.vue'
|
2020-10-29 17:28:26 +08:00
|
|
|
|
2021-08-24 13:36:48 +08:00
|
|
|
import type { App } from 'vue'
|
2022-02-11 11:03:15 +08:00
|
|
|
import type { SFCWithInstall } from '@element-plus/utils'
|
2021-08-24 13:36:48 +08:00
|
|
|
|
2020-11-20 20:24:16 +08:00
|
|
|
TimeSelect.install = (app: App): void => {
|
2020-10-04 19:57:49 +08:00
|
|
|
app.component(TimeSelect.name, TimeSelect)
|
|
|
|
}
|
|
|
|
|
2021-08-24 13:36:48 +08:00
|
|
|
const _TimeSelect = TimeSelect as SFCWithInstall<typeof TimeSelect>
|
2020-12-23 14:07:15 +08:00
|
|
|
|
|
|
|
export default _TimeSelect
|
2021-08-24 13:36:48 +08:00
|
|
|
export const ElTimeSelect = _TimeSelect
|