ant-design-vue/components/table/ColumnGroup.tsx

18 lines
443 B
Vue
Raw Normal View History

2020-10-23 06:29:39 +00:00
import { defineComponent } from 'vue';
import PropTypes, { withUndefined } from '../_util/vue-types';
import { tuple } from '../_util/type';
2018-03-29 14:08:04 +00:00
2020-10-23 06:29:39 +00:00
export default defineComponent({
2018-04-08 13:17:20 +00:00
name: 'ATableColumnGroup',
2018-03-29 14:08:04 +00:00
props: {
fixed: withUndefined(
PropTypes.oneOfType([PropTypes.looseBool, PropTypes.oneOf(tuple('left', 'right'))]),
),
2018-03-29 14:08:04 +00:00
title: PropTypes.any,
},
__ANT_TABLE_COLUMN_GROUP: true,
2020-07-23 10:34:24 +00:00
render() {
return null;
},
2020-10-23 06:29:39 +00:00
});