12 lines
172 B
Vue
12 lines
172 B
Vue
<template>
|
|
<div class="layout-wrapper layout-blank">
|
|
<RouterView />
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
.layout-wrapper.layout-blank {
|
|
flex-direction: column;
|
|
}
|
|
</style>
|