This commit is contained in:
chenjinsong
2021-06-07 18:35:16 +08:00
parent c68ac91e2d
commit 13329e8f85
27 changed files with 3064 additions and 448 deletions

View File

@@ -0,0 +1,26 @@
<template>
<div class="cn-container">
<router-view/>
</div>
</template>
<script>
export default {
name: 'Container',
data () {
return {
}
}
}
</script>
<style lang="scss">
.cn-container {
height: calc(100% - 50px);
background-color: #f6f6f6;
width: 100%;
&>div {
height: 100%;
}
}
</style>