mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 13:39:40 +08:00
0c520520be
* 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
11 lines
201 B
Vue
11 lines
201 B
Vue
import { defineComponent } from 'vue';
|
|
import { columnProps } from './interface';
|
|
|
|
export default defineComponent({
|
|
name: 'ATableColumn',
|
|
props: columnProps,
|
|
render() {
|
|
return null;
|
|
},
|
|
});
|