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