perf: 菜单改版,account数据列表布局改版;css变量提取等;

This commit is contained in:
chenjinsong
2021-04-07 09:58:34 +08:00
parent 7648b3868d
commit 8d41ec6cdb
39 changed files with 2239 additions and 522 deletions

View File

@@ -0,0 +1,24 @@
<template>
<div class="container">
<router-view/>
</div>
</template>
<script>
export default {
name: 'container',
data () {
return {
}
}
}
</script>
<style scoped>
.container {
padding: 10px;
box-sizing: border-box;
height: calc(100% - 50px);
background-color: #f6f6f6;
}
</style>