element-plus
Version:
A Component Library for Vue 3
13 lines (9 loc) • 344 B
text/typescript
import Calendar from './src/index.vue'
import type { App } from 'vue'
import type { SFCWithInstall } from '@element-plus/utils/types'
Calendar.install = (app: App): void => {
app.component(Calendar.name, Calendar)
}
const _Calendar = Calendar as SFCWithInstall<typeof Calendar>
export default _Calendar
export const ElCalendar = _Calendar