19 lines
255 B
Vue
19 lines
255 B
Vue
|
|
<template>
|
||
|
|
<div class="integral-external-layout">
|
||
|
|
<router-view />
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
name: 'EmptyLayout',
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style scoped>
|
||
|
|
.integral-external-layout {
|
||
|
|
min-height: 100vh;
|
||
|
|
background: #f0f2f5;
|
||
|
|
}
|
||
|
|
</style>
|