unity-calendar/layouts/default.vue

18 lines
302 B
Vue

<style>
.pagewrap {
height: 100vh;
display: flex; flex-direction: column;
align-items: center;
justify-content: space-between;
overflow: auto;
}
</style>
<template>
<div class="pagewrap">
<slot />
<navfoot />
</div>
</template>