Files
his/openhis-ui-vue3/src/components/TableLayout/PageWrapper.vue
2026-05-27 08:59:07 +08:00

21 lines
277 B
Vue
Executable File

<template>
<div class="page-wrapper">
<slot />
</div>
</template>
<script setup>
defineOptions({
name: 'PageWrapper',
});
</script>
<style scoped lang="scss">
.page-wrapper {
display: flex;
flex-direction: column;
height: 100%;
overflow: hidden;
}
</style>