2022-10-11 18:11:32 +08:00

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>