ant-design-vue/components/table/Column.tsx
Amour1688 0c520520be
chore: optimize table typescript support (#3087)
* chore: optimize table typescript support

* chore: update table type

* fix: table type error

* fix: columns shuold not have default value

* fix: sortDirections and scroll should not have default value

* chore: rowSelectionType as tuple
2020-11-02 15:52:02 +08:00

11 lines
201 B
Vue

import { defineComponent } from 'vue';
import { columnProps } from './interface';
export default defineComponent({
name: 'ATableColumn',
props: columnProps,
render() {
return null;
},
});