21 lines
295 B
Vue
21 lines
295 B
Vue
<template>
|
|
<div class="common-layout">
|
|
<RouterView />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { RouterView } from 'vue-router';
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
|
|
.common-layout {
|
|
height: calc(100vh);
|
|
background-color: #E9EEF3;
|
|
color: #333;
|
|
text-align: center;
|
|
}
|
|
|
|
</style>
|