element ui Container布局容器布满全屏
在 APP.vue css样式添加
html,body,#app{
width:100%;
height:100%;
margin: 0;
padding: 0;
}
在装Container容器的盒模型<div class="body">
<el-container style="height:100%" direction="vertical">
.body{
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}