mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-11-30 02:57:50 +08:00
feat: table column group support fixed(#3882) (#3884)
This commit is contained in:
parent
160f768008
commit
b5ccbd4aeb
@ -1,9 +1,13 @@
|
||||
import { defineComponent } from 'vue';
|
||||
import PropTypes from '../_util/vue-types';
|
||||
import PropTypes, { withUndefined } from '../_util/vue-types';
|
||||
import { tuple } from '../_util/type';
|
||||
|
||||
export default defineComponent({
|
||||
name: 'ATableColumnGroup',
|
||||
props: {
|
||||
fixed: withUndefined(
|
||||
PropTypes.oneOfType([PropTypes.looseBool, PropTypes.oneOf(tuple('left', 'right'))]),
|
||||
),
|
||||
title: PropTypes.any,
|
||||
},
|
||||
__ANT_TABLE_COLUMN_GROUP: true,
|
||||
|
Loading…
Reference in New Issue
Block a user