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.
ant-design-vue/components/vc-table/index.js

38 lines
886 B

// base rc-table 6.10.9
import Table from './src/Table';
import Column from './src/Column';
import ColumnGroup from './src/ColumnGroup';
import { INTERNAL_COL_DEFINE } from './src/utils';
// const Table = {
// name: 'Table',
// inheritAttrs: false,
// Column,
// ColumnGroup,
// props: T.props,
// methods: {
// getTableNode() {
// return this.table.tableNode;
// },
// getBodyTable() {
// return this.table.ref_bodyTable;
// },
// saveTable(node) {
// this.table = node;
// },
// },
// render() {
// const props = getOptionProps(this);
// const columns = props.columns;
// const tProps = {
// ...props,
// ...this.$attrs,
// columns,
// ref: this.saveTable,
// };
// return <T {...tProps} />;
// },
// };
export default Table;
export { Column, ColumnGroup, INTERNAL_COL_DEFINE };