28 lines
386 B
Vue
28 lines
386 B
Vue
<template>
|
|
<div class="table-section">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
defineOptions({
|
|
name: 'TableSection',
|
|
});
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.table-section {
|
|
flex: 1;
|
|
min-height: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
:deep(.editable-table) {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
}
|
|
}
|
|
</style>
|