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

8 lines
144 B
JavaScript
Raw Normal View History

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