You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/row/index.ts

11 lines
191 B

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;