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

10 lines
189 B
JavaScript
Raw Normal View History

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