element-plus
Version:
> TODO: description
14 lines (9 loc) • 364 B
text/typescript
import DatePicker from './src/date-picker'
import type { App } from 'vue'
import type { SFCWithInstall } from '@element-plus/utils/types'
const _DatePicker = DatePicker as SFCWithInstall<typeof DatePicker>
_DatePicker.install = (app: App) => {
app.component(_DatePicker.name, _DatePicker)
}
export default _DatePicker
export const ElDatePicker = _DatePicker