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

9 lines
145 B
JavaScript
Raw Normal View History

2019-01-12 03:33:27 +00:00
import { Row } from '../grid';
/* istanbul ignore next */
2019-01-12 03:33:27 +00:00
Row.install = function(Vue) {
Vue.component(Row.name, Row);
};
2019-01-12 03:33:27 +00:00
export default Row;