mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
6503e55277
* refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils-v2): migrate utils * refactor(utils): remove * refactor(utils): rename * refactor(utils): move EVENT_CODE to constants * refactor: remove generic
14 lines
365 B
TypeScript
14 lines
365 B
TypeScript
import TimeSelect from './src/time-select.vue'
|
|
|
|
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils'
|
|
|
|
TimeSelect.install = (app: App): void => {
|
|
app.component(TimeSelect.name, TimeSelect)
|
|
}
|
|
|
|
const _TimeSelect = TimeSelect as SFCWithInstall<typeof TimeSelect>
|
|
|
|
export default _TimeSelect
|
|
export const ElTimeSelect = _TimeSelect
|