16 lines
277 B
Vue
16 lines
277 B
Vue
<template>
|
|
<div class="blank-layout">
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.blank-layout {
|
|
min-height: 100vh;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
}
|
|
</style>
|