mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-14 08:51:28 +08:00
f2af8d248e
* feat: update grid * fix: row can't provide rowContext to col Co-authored-by: tangjinzhou <415800467@qq.com>
8 lines
144 B
JavaScript
8 lines
144 B
JavaScript
import { Col } from '../grid';
|
|
/* istanbul ignore next */
|
|
Col.install = function(app) {
|
|
app.component(Col.name, Col);
|
|
};
|
|
|
|
export default Col;
|