ant-design-vue/components/row/index.ts

11 lines
191 B
TypeScript
Raw Normal View History

2020-10-13 14:59:24 +00:00
import { App } from 'vue';
2019-01-12 03:33:27 +00:00
import { Row } from '../grid';
/* istanbul ignore next */
2020-10-13 14:59:24 +00:00
Row.install = function(app: App) {
app.component(Row.name, Row);
2020-10-13 11:14:56 +00:00
return app;
2019-01-12 03:33:27 +00:00
};
2019-01-12 03:33:27 +00:00
export default Row;