import DatePicker from './src/date-picker' import type { App } from 'vue' import type { SFCWithInstall } from '@element-plus/utils' const _DatePicker = DatePicker as SFCWithInstall _DatePicker.install = (app: App) => { app.component(_DatePicker.name, _DatePicker) } export default _DatePicker export const ElDatePicker = _DatePicker