unity-calendar/layouts/default.vue

17 lines
278 B
Vue

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