mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
11 lines
199 B
TypeScript
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 }
|