element-plus/packages/layout/index.ts

8 lines
177 B
TypeScript
Raw Normal View History

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