mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
28 lines
687 B
Vue
28 lines
687 B
Vue
<template>
|
|
<component :is="uiComponent" v-bind="uiProps">
|
|
<template #default="{ $index, row }">
|
|
<!-- eslint-disable-next-line vue/valid-attribute-name -->
|
|
<slot :$index="$index" :row="row"></slot>
|
|
</template>
|
|
</component>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed } from 'vue';
|
|
|
|
import { getDesignConfig } from './config';
|
|
import type { TableColumnProps } from './types';
|
|
|
|
defineOptions({
|
|
name: 'TMTableColumn',
|
|
});
|
|
|
|
const props = defineProps<TableColumnProps>();
|
|
|
|
const ui = getDesignConfig('components')?.tableColumn;
|
|
|
|
const uiComponent = ui?.component || 'el-table-column';
|
|
|
|
const uiProps = computed(() => ui?.props(props) || props);
|
|
</script>
|