mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-05 05:29:01 +08:00
18 lines
424 B
Vue
18 lines
424 B
Vue
import { defineComponent } from 'vue';
|
|
import type { ColumnType } from './interface';
|
|
import type { CustomSlotsType } from '../_util/type';
|
|
|
|
export type ColumnProps<RecordType = unknown> = ColumnType<RecordType>;
|
|
export default defineComponent<ColumnProps>({
|
|
name: 'ATableColumn',
|
|
slots: Object as CustomSlotsType<{
|
|
title?: any;
|
|
filterIcon?: any;
|
|
default?: any;
|
|
}>,
|
|
|
|
render() {
|
|
return null;
|
|
},
|
|
});
|