16 lines
234 B
Vue
16 lines
234 B
Vue
<template>
|
|
<div class="login-layout">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.login-layout {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
background-color: #f0f4f8;
|
|
}
|
|
</style>
|