element-plus/packages/components/row/index.ts

15 lines
287 B
TypeScript
Raw Normal View History

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