mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 09:20:51 +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
21 lines
632 B
TypeScript
21 lines
632 B
TypeScript
import TimePicker from './src/time-picker'
|
|
import CommonPicker from './src/common/picker.vue'
|
|
import TimePickPanel from './src/time-picker-com/panel-time-pick.vue'
|
|
|
|
import type { App } from 'vue'
|
|
import type { SFCWithInstall } from '@element-plus/utils'
|
|
|
|
export * from './src/common/date-utils'
|
|
export * from './src/common/constant'
|
|
export * from './src/common/props'
|
|
|
|
const _TimePicker = TimePicker as SFCWithInstall<typeof TimePicker>
|
|
|
|
_TimePicker.install = (app: App) => {
|
|
app.component(_TimePicker.name, _TimePicker)
|
|
}
|
|
|
|
export { CommonPicker, TimePickPanel }
|
|
export default _TimePicker
|
|
export const ElTimePicker = _TimePicker
|