element-plus/packages/row/index.ts

9 lines
149 B
TypeScript
Raw Normal View History

import { App } from 'vue'
import Row from '../col/src/row'
Row.install = (app: App): void => {
app.component(Row.name, Row)
}
export default Row