mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-15 01:11:53 +08:00
11 lines
190 B
JavaScript
11 lines
190 B
JavaScript
import { Row } from '../grid';
|
|
import Base from '../base';
|
|
|
|
/* istanbul ignore next */
|
|
Row.install = function(Vue) {
|
|
Vue.use(Base);
|
|
Vue.component(Row.name, Row);
|
|
};
|
|
|
|
export default Row;
|