可视化前端功能

This commit is contained in:
inrgihc
2021-08-31 22:40:04 +08:00
parent fd4f71af81
commit 36c2ce123c
217 changed files with 10336 additions and 2260 deletions

View File

@@ -0,0 +1,25 @@
<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>