Files
element-plus/packages/layout/index.ts
2020-10-29 19:37:18 +08:00

11 lines
199 B
TypeScript

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)
}
export { Row, Col }