ant-design-vue/components/vc-table/src/Column.jsx

18 lines
488 B
Vue

import PropTypes from '../../_util/vue-types';
export default {
name: 'Column',
props: {
colSpan: PropTypes.number,
title: PropTypes.any,
dataIndex: PropTypes.string,
width: PropTypes.oneOfType([PropTypes.number, PropTypes.string]),
fixed: PropTypes.oneOf([true, 'left', 'right']),
customRender: PropTypes.func,
className: PropTypes.string,
// onCellClick: PropTypes.func,
customCell: PropTypes.func,
customHeaderCell: PropTypes.func,
},
};