mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
640842bbe0
* 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>
21 lines
614 B
TypeScript
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
|