Vue容器布局铺满全屏
在App.vue中设置样式。<style>#app {position: absolute;top: 0;left: 0;width: 100%;height: 100%;}</style>然后在容器文件中最外层设置<div>最后设置样式。.index {padding: 0px;margi
·
在App.vue中设置样式。
<style>
#app {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>
然后在容器文件中最外层设置<div>
最后设置样式。
.index {
padding: 0px;
margin: 0px;
height: 100%;
}
.el-container {
height: 100%;
}
更多推荐
已为社区贡献2条内容
所有评论(0)