2020-10-23 06:29:39 +00:00
|
|
|
import { defineComponent } from 'vue';
|
2020-11-02 07:52:02 +00:00
|
|
|
import { columnProps } from './interface';
|
2018-03-29 14:08:04 +00:00
|
|
|
|
2020-10-23 06:29:39 +00:00
|
|
|
export default defineComponent({
|
2018-04-08 13:17:20 +00:00
|
|
|
name: 'ATableColumn',
|
2020-11-02 07:52:02 +00:00
|
|
|
props: columnProps,
|
2020-07-23 10:34:24 +00:00
|
|
|
render() {
|
|
|
|
return null;
|
|
|
|
},
|
2020-10-23 06:29:39 +00:00
|
|
|
});
|