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

11 lines
190 B
JavaScript
Raw Normal View History

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