elementui实现container布局布满全屏
/* 1、需要给包裹的div一个height:100% */
#module{
height: 100%;
}
/* 2、给#app,html,body,.el-container一个height:100% */
#app,html,body,.el-container{
height:100%;
}
/* 3、给el-container设置direction="vertical",因为包含main和footer */
.el-container{
direction: vertical;
}