element-plus/packages/col/index.ts
qiang 272b8c76c8
fix: some components miss install type (#1547)
* fix: some components miss install type

* fix: some components miss install type
2021-03-09 21:24:22 +08:00

11 lines
249 B
TypeScript

import Col from './src/col'
import type { SFCWithInstall } from '@element-plus/utils/types'
const _Col: SFCWithInstall<typeof Col> = Col as SFCWithInstall<typeof Col>
_Col.install = app => {
app.component(_Col.name, _Col)
}
export default _Col