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

9 lines
176 B
TypeScript
Raw Normal View History

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