mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-01 11:38:36 +08:00
9 lines
176 B
TypeScript
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;
|