Files
his/openhis-ui-vue3/src/components/TableLayout/TableSection.vue
2025-12-27 15:30:25 +08:00

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>