ant-design-vue/components/col/index.ts
2020-08-22 14:38:29 +08:00

9 lines
176 B
TypeScript

import { App } from 'vue';
import { Col } from '../grid';
/* istanbul ignore next */
Col.install = function(app: App) {
app.component(Col.name, Col);
};
export default Col;