mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
5fcd416cfb
* feat: add row component * feat: add col * test: update test * refactor: rename to layout * chore: update
8 lines
177 B
TypeScript
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)
|
|
}
|