mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 20:47:56 +08:00
13 lines
205 B
Vue
13 lines
205 B
Vue
import PropTypes from '../_util/vue-types';
|
|
|
|
export default {
|
|
name: 'ATableColumnGroup',
|
|
props: {
|
|
title: PropTypes.any,
|
|
},
|
|
__ANT_TABLE_COLUMN_GROUP: true,
|
|
render() {
|
|
return null;
|
|
},
|
|
};
|