Co-authored-by: Gabriel Radureau <arcodange@gmail.com> Co-committed-by: Gabriel Radureau <arcodange@gmail.com>
18 lines
240 B
Vue
18 lines
240 B
Vue
<template>
|
|
<div class="layout-root">
|
|
<slot />
|
|
<AppFooter />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.layout-root {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.layout-root > :first-child {
|
|
flex: 1;
|
|
}
|
|
</style>
|