element-plus/packages/space/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
269 B
TypeScript

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