mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-15 01:41:20 +08:00
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)
|
||
|
}
|