element-plus/packages/components/calendar/index.ts
三咲智子 0636e1e240
style: add import and stricter lint (#3440)
* style: add import lint

* chore: apply eslint rules

* chore: add stricter lint

* chore: lint all files

* auto fix

* manually fix

* restore build-indices.ts
2021-09-17 15:27:31 +08:00

13 lines
344 B
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