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