UNPKG

element-plus

Version:

A Component Library for Vue3.0

11 lines (7 loc) 254 B
import Row from '../col/src/row' import type { SFCWithInstall } from '@element-plus/utils/types' const _Row: SFCWithInstall<typeof Row> = Row as SFCWithInstall<typeof Row> _Row.install = app => { app.component(_Row.name, _Row) } export default _Row