mirror of
https://gitee.com/dromara/dbswitch.git
synced 2025-09-19 18:44:56 +00:00
26 lines
311 B
Vue
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>
|