element-plus/packages/layout/index.ts
zazzaz 5fcd416cfb
feat: add Layout component (#50)
* feat: add row component

* feat: add col

* test: update test

* refactor: rename to layout

* chore: update
2020-07-31 18:20:03 +08:00

8 lines
177 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)
}