import { App } from 'vue' import EsRow from './src/row' EsRow.install = (app: App): void => { app.component(EsRow.name, EsRow) } export default EsRow