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