Files
dbswitch/dbswitch-admin-ui/src/App.vue
2022-08-14 00:10:57 +08:00

26 lines
311 B
Vue

<template>
<div class="body-wrapper">
<router-view/>
</div>
</template>
<script>
export default {
name: 'App'
}
</script>
<style scoped>
.body-wrapper{
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
overflow-y: auto;
background-color: #fff;
}
</style>