You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
261 B
14 lines
261 B
4 years ago
|
import { defineComponent } from 'vue';
|
||
6 years ago
|
import PropTypes from '../_util/vue-types';
|
||
7 years ago
|
|
||
4 years ago
|
export default defineComponent({
|
||
7 years ago
|
name: 'ATableColumnGroup',
|
||
7 years ago
|
props: {
|
||
|
title: PropTypes.any,
|
||
|
},
|
||
|
__ANT_TABLE_COLUMN_GROUP: true,
|
||
4 years ago
|
render() {
|
||
|
return null;
|
||
|
},
|
||
4 years ago
|
});
|