mirror of
https://github.com/Tencent/tmagic-editor.git
synced 2025-04-05 19:41:40 +08:00
62 lines
1.1 KiB
Vue
62 lines
1.1 KiB
Vue
<template>
|
|
<component
|
|
ref="table"
|
|
:is="uiComponent.component"
|
|
v-bind="uiProps"
|
|
@select="selectHandler"
|
|
@sort-change="sortChangeHandler"
|
|
>
|
|
<slot></slot>
|
|
</component>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed, ref } from 'vue';
|
|
|
|
import { getConfig } from './config';
|
|
|
|
const props = withDefaults(
|
|
defineProps<{
|
|
data?: any[];
|
|
border?: boolean;
|
|
maxHeight?: number | string;
|
|
defaultExpandAll?: boolean;
|
|
}>(),
|
|
{
|
|
data: () => [],
|
|
},
|
|
);
|
|
|
|
const uiComponent = getConfig('components').table;
|
|
|
|
const uiProps = computed(() => uiComponent.props(props));
|
|
|
|
const emit = defineEmits(['select', 'sort-change']);
|
|
|
|
const table = ref<any>();
|
|
|
|
const selectHandler = (...args: any[]) => {
|
|
emit('select', ...args);
|
|
};
|
|
|
|
const sortChangeHandler = (...args: any[]) => {
|
|
emit('sort-change', ...args);
|
|
};
|
|
|
|
defineExpose({
|
|
$el: table.value?.$el,
|
|
|
|
clearSelection(...args: any[]) {
|
|
table.value?.clearSelection(...args);
|
|
},
|
|
|
|
toggleRowSelection(...args: any[]) {
|
|
table.value?.toggleRowSelection(...args);
|
|
},
|
|
|
|
toggleRowExpansion(...args: any[]) {
|
|
table.value?.toggleRowExpansion(...args);
|
|
},
|
|
});
|
|
</script>
|