mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-13 17:04:33 +08:00
272b8c76c8
* fix: some components miss install type * fix: some components miss install type
11 lines
254 B
TypeScript
11 lines
254 B
TypeScript
import Row from '../col/src/row'
|
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
|
|
|
const _Row: SFCWithInstall<typeof Row> = Row as SFCWithInstall<typeof Row>
|
|
|
|
_Row.install = app => {
|
|
app.component(_Row.name, _Row)
|
|
}
|
|
|
|
export default _Row
|