element-plus/packages/components/time-picker/index.ts
Jeremy 640842bbe0
refactor(components): [time-picker] constants (#8170)
* refactor(components): [time-picker] constants

* Relocate the constants and utils.

* chore: remove expression `instanceof`

* chore: refine code

Co-authored-by: JeremyWuuuuu <15975785+JeremyWuuuuu@users.noreply.github.com>
2022-06-08 16:20:45 +08:00

21 lines
614 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/utils'
export * from './src/constants'
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