11 lines
191 B
TypeScript
11 lines
191 B
TypeScript
|
import { App } from 'vue';
|
||
|
import { Row } from '../grid';
|
||
|
|
||
|
/* istanbul ignore next */
|
||
|
Row.install = function(app: App) {
|
||
|
app.component(Row.name, Row);
|
||
|
return app;
|
||
|
};
|
||
|
|
||
|
export default Row;
|