mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
15 lines
287 B
TypeScript
15 lines
287 B
TypeScript
|
import Row from './src/row'
|
||
|
|
||
|
import type { App } from 'vue'
|
||
|
import type { SFCWithInstall } from '@element-plus/utils/types'
|
||
|
|
||
|
|
||
|
const _Row = Row as SFCWithInstall<typeof Row>
|
||
|
|
||
|
_Row.install = (app: App) => {
|
||
|
app.component(_Row.name, _Row)
|
||
|
}
|
||
|
|
||
|
export default _Row
|
||
|
export const ElRow = _Row
|