21 lines
277 B
Vue
Executable File
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>
|